1b345e8655
This commit re-enables tests that are assumed to be ok by now, since they: - Have been passing in CI for a long time recently (more precisely, not failed once in pulse run range 730-829). - Did not have any known issues associated with them. Note that not all of these tests were disabled as a result of QTBUG-21402. Task-number: QTBUG-21402 Change-Id: I80bbf8b351bd9165aa968e98f4dc17e8be6bc7c3 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
36 lines
701 B
Prolog
36 lines
701 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) {
|
|
include($$QT_SOURCE_TREE/config.tests/unix/openssl/openssl.pri)
|
|
# Add optional SSL libs
|
|
LIBS += $$OPENSSL_LIBS
|
|
}
|
|
|
|
wince* {
|
|
DEFINES += SRCDIR=\\\"./\\\"
|
|
|
|
certFiles.files = certs ssl.tar.gz
|
|
certFiles.path = .
|
|
DEPLOYMENT += certFiles
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
}
|
|
|
|
requires(contains(QT_CONFIG,private_tests))
|