qt5base-lts/tests/auto/network/socket/qtcpserver/test/test.pro
Jo Asplin 1b345e8655 Re-enabled tests
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>
2011-10-26 02:58:36 +02:00

28 lines
437 B
Prolog

CONFIG += testcase
SOURCES += ../tst_qtcpserver.cpp
win32: {
wince*: {
LIBS += -lws2
crashApp.files = ../crashingServer/crashingServer.exe
crashApp.path = crashingServer
DEPLOYMENT += crashApp
} else {
LIBS += -lws2_32
}
}
TARGET = ../tst_qtcpserver
win32 {
CONFIG(debug, debug|release) {
TARGET = ../../debug/tst_qtcpserver
} else {
TARGET = ../../release/tst_qtcpserver
}
}
QT = core network testlib
MOC_DIR=tmp