Skip the network SSL test on Windows.
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>
Thu, 1 Mar 2012 08:38:45 +0000 (09:38 +0100)
committerQt by Nokia <qt-info@nokia.com>
Thu, 1 Mar 2012 09:40:08 +0000 (10:40 +0100)
For SSL, this would require an OpenSSL library to be installed.

Change-Id: I2a320e7faf40ef925c90dbe539f912e4a8fc13fc
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Reviewed-by: Sergio Ahumada <sergio.ahumada@nokia.com>
tests/auto/other/networkselftest/tst_networkselftest.cpp

index 841df6e..ebb8443 100644 (file)
@@ -938,7 +938,7 @@ void tst_NetworkSelfTest::socks5ProxyAuth()
 void tst_NetworkSelfTest::supportsSsl()
 {
 #ifdef QT_NO_SSL
-    QFAIL("SSL not compiled in");
+    QSKIP("SSL not compiled in");
 #else
     QVERIFY2(QSslSocket::supportsSsl(), "Could not load SSL libraries");
 #endif