658f12d735
Before testserver becomes a stable feature, let's keep testserver.prf in "mkspecs/features/unsupported". The test server's shared files will be stored in "mkspecs/features/data/testserver". Because the path of testserver has been changed, all the tests relying on the docker servers should be updated as well. Change-Id: Id2494d2b58ee2a9522d99ae61c6236021506b876 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
28 lines
503 B
Prolog
28 lines
503 B
Prolog
CONFIG += testcase
|
|
|
|
SOURCES += tst_qsslsocket.cpp
|
|
QT = core core-private network-private testlib
|
|
|
|
TARGET = tst_qsslsocket
|
|
|
|
win32 {
|
|
CONFIG(debug, debug|release) {
|
|
DESTDIR = debug
|
|
} else {
|
|
DESTDIR = release
|
|
}
|
|
}
|
|
|
|
TESTDATA += certs
|
|
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
|
|
requires(qtConfig(private_tests))
|
|
|
|
# DOCKERTODO: it's 'linux' because it requires cyrus, which
|
|
# is linux-only for now ...
|
|
linux {
|
|
CONFIG += unsupported/testserver
|
|
QT_TEST_SERVER_LIST = squid danted cyrus apache2 echo
|
|
}
|