summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/socket/qudpsocket/test/test.pro
blob: 994b360370d204807eec978b333ba5d77290d3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
CONFIG += testcase
testcase.timeout = 800 # this test is slow
SOURCES  += ../tst_qudpsocket.cpp
INCLUDEPATH += ../../../../../shared/
QT = core network testlib

MOC_DIR=tmp

win32:debug_and_release {
  CONFIG(debug, debug|release) {
    DESTDIR = ../debug
} else {
    DESTDIR = ../release
  }
} else {
    DESTDIR = ../
}

TARGET = tst_qudpsocket

# Only on Linux until 'echo' has been added to docker-compose-for-{windows,macOS}.yml and tested
linux {
    CONFIG += unsupported/testserver
    QT_TEST_SERVER_LIST = danted echo
}