summaryrefslogtreecommitdiffstats
path: root/tests/auto/qnetworkconfigurationmanager
diff options
context:
space:
mode:
authorShane Kearns <shane.kearns@accenture.com>2011-05-05 13:53:17 +0100
committerMarkus Goetz <Markus.Goetz@nokia.com>2011-05-09 13:50:09 +0200
commit939886720920f907884b8b32bf501354ed805857 (patch)
treeb9ae9c8edccaee1bfa58098bb82ed8903ed7df58 /tests/auto/qnetworkconfigurationmanager
parenta590e77fd8721acc0c844f86db86d5c9445fa9a6 (diff)
Skip test on MacOS due to problems with corewlan plugin
Reviewed-by: Cristiano di Flora
Diffstat (limited to 'tests/auto/qnetworkconfigurationmanager')
-rw-r--r--tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp
index 33595339f2..c270eb8813 100644
--- a/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp
+++ b/tests/auto/qnetworkconfigurationmanager/tst_qnetworkconfigurationmanager.cpp
@@ -350,10 +350,13 @@ public:
// regression test for QTBUG-18795
void tst_QNetworkConfigurationManager::usedInThread()
{
+#if defined Q_OS_MAC && !defined (QT_NO_COREWLAN)
+ QSKIP("QTBUG-19070 Mac CoreWlan plugin is broken", SkipAll);
+#else
QNCMTestThread thread;
connect(&thread, SIGNAL(finished()), &QTestEventLoop::instance(), SLOT(exitLoop()));
thread.start();
- QTestEventLoop::instance().enterLoop(5);
+ QTestEventLoop::instance().enterLoop(100); //QTRY_VERIFY could take ~90 seconds to time out in the thread
QVERIFY(thread.isFinished());
qDebug() << "prescan:" << thread.preScanConfigs.count();
qDebug() << "postscan:" << thread.configs.count();
@@ -366,6 +369,7 @@ void tst_QNetworkConfigurationManager::usedInThread()
QList<QNetworkConfiguration> configs = manager.allConfigurations();
QCOMPARE(thread.configs, configs);
QCOMPARE(thread.preScanConfigs, preScanConfigs);
+#endif
}
QTEST_MAIN(tst_QNetworkConfigurationManager)