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>
18 lines
403 B
Prolog
18 lines
403 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qhttpsocketengine
|
|
SOURCES += tst_qhttpsocketengine.cpp
|
|
|
|
|
|
include(../platformsocketengine/platformsocketengine.pri)
|
|
|
|
MOC_DIR=tmp
|
|
|
|
requires(qtConfig(private_tests))
|
|
QT = core-private network-private testlib
|
|
|
|
# TODO: For now linux-only, because cyrus is linux-only atm ...
|
|
linux {
|
|
CONFIG += unsupported/testserver
|
|
QT_TEST_SERVER_LIST = squid danted cyrus apache2
|
|
}
|