blob: 9a8f18517f34e45345323615c79bbac24622b469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff --git a/cui/source/dialogs/AdditionsDialog.cxx b/cui/source/dialogs/AdditionsDialog.cxx
index f0dedf626acf..ec330b584acd 100644
--- a/cui/source/dialogs/AdditionsDialog.cxx
+++ b/cui/source/dialogs/AdditionsDialog.cxx
@@ -276,9 +276,13 @@ SearchAndParseThread::SearchAndParseThread(AdditionsDialog* pDialog, const bool
, m_bIsFirstLoading(isFirstLoading)
{
// if we are running a UITest, e.g. UITest_sw_options then
- // don't attempt to downloading anything
- static const bool bUITest = getenv("LIBO_TEST_UNIT");
-
+ // don't attempt to downloading anything. Use AUTOPKGTEST_TMP in Debian
+ // so that the test actually is run in autopkgtest where we are sure
+ // we have internet (needs-internet)
+ static bool bUITest;
+ if (getenv("AUTOPKGTEST_TMP")) { bUITest = true; }
+ else { bUITest = false; }
+
m_bUITest = bUITest;
}
|