Remove insignification of qsslsocket test on Windows and Mac.
The test has a single stable failure on both of these platforms. Mark the failure with QEXPECT_FAIL (that was already the case on Ubuntu 11.10) and re-enable the test. Note also the elimination of duplicate bug numbers. Task-number: QTBUG-24234 Change-Id: Ica11e7d1f3cd9487647127984fef7c75e0e764fe Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
This commit is contained in:
parent
7b87469bc5
commit
3019c9da1a
@ -31,9 +31,6 @@ wince* {
|
||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||
}
|
||||
|
||||
# QTBUG-23575
|
||||
linux-*:system(". /etc/lsb-release && [ $DISTRIB_CODENAME = oneiric ]"):DEFINES+=UBUNTU_ONEIRIC
|
||||
linux-*:system(". /etc/lsb-release && [ $DISTRIB_CODENAME = oneiric ]"):DEFINES+=UBUNTU_ONEIRIC # QTBUG-24234
|
||||
|
||||
requires(contains(QT_CONFIG,private_tests))
|
||||
|
||||
win32|mac:CONFIG += insignificant_test # QTBUG-24234
|
||||
|
@ -1766,8 +1766,8 @@ void tst_QSslSocket::verifyMode()
|
||||
loop.exec();
|
||||
|
||||
QVERIFY(clientSocket.isEncrypted());
|
||||
#if defined(UBUNTU_ONEIRIC) && defined(__x86_64__)
|
||||
QEXPECT_FAIL("", "QTBUG-23575 - Fails on this platform", Abort);
|
||||
#if (defined(UBUNTU_ONEIRIC) && defined(__x86_64__)) || defined(Q_OS_WIN) || defined(Q_OS_MAC)
|
||||
QEXPECT_FAIL("", "QTBUG-24234", Abort);
|
||||
#endif
|
||||
QVERIFY(server.socket->sslErrors().isEmpty());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user