3019c9da1a
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>
37 lines
745 B
Prolog
37 lines
745 B
Prolog
CONFIG += testcase
|
|
|
|
SOURCES += tst_qsslsocket.cpp
|
|
!wince*:win32:LIBS += -lws2_32
|
|
QT += core-private network-private testlib
|
|
QT -= gui
|
|
|
|
TARGET = tst_qsslsocket
|
|
|
|
win32 {
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR = debug
|
|
} else {
|
|
DESTDIR = release
|
|
}
|
|
}
|
|
|
|
# OpenSSL support
|
|
contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) {
|
|
# Add optional SSL libs
|
|
LIBS += $$OPENSSL_LIBS
|
|
}
|
|
|
|
wince* {
|
|
DEFINES += SRCDIR=\\\"./\\\"
|
|
|
|
certFiles.files = certs ssl.tar.gz
|
|
certFiles.path = .
|
|
DEPLOYMENT += certFiles
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
}
|
|
|
|
linux-*:system(". /etc/lsb-release && [ $DISTRIB_CODENAME = oneiric ]"):DEFINES+=UBUNTU_ONEIRIC # QTBUG-24234
|
|
|
|
requires(contains(QT_CONFIG,private_tests))
|