Cleanup corelib autotests
Tidy the autotest .pro files. Most autotest .pro files should look like this: CONFIG += testcase TARGET = tst_something QT = core testlib SOURCES = tst_something.cpp Change-Id: I877c2194e9fa9dd13478d117895e1e255a948ad7 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
This commit is contained in:
parent
b0a7af6b4d
commit
94fc875079
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qabstractanimation
|
TARGET = tst_qabstractanimation
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qabstractanimation.cpp \
|
SOURCES = tst_qabstractanimation.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qanimationgroup
|
TARGET = tst_qanimationgroup
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qanimationgroup.cpp
|
SOURCES = tst_qanimationgroup.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qparallelanimationgroup
|
TARGET = tst_qparallelanimationgroup
|
||||||
QT = core gui testlib
|
QT = core gui testlib
|
||||||
SOURCES += tst_qparallelanimationgroup.cpp
|
SOURCES = tst_qparallelanimationgroup.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qpauseanimation
|
TARGET = tst_qpauseanimation
|
||||||
QT = core core-private gui gui-private testlib
|
QT = core-private gui-private testlib
|
||||||
SOURCES += tst_qpauseanimation.cpp
|
SOURCES = tst_qpauseanimation.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qpropertyanimation
|
TARGET = tst_qpropertyanimation
|
||||||
QT = core gui widgets testlib
|
QT = core gui widgets testlib
|
||||||
SOURCES += tst_qpropertyanimation.cpp
|
SOURCES = tst_qpropertyanimation.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qsequentialanimationgroup
|
TARGET = tst_qsequentialanimationgroup
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qsequentialanimationgroup.cpp
|
SOURCES = tst_qsequentialanimationgroup.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qvariantanimation
|
TARGET = tst_qvariantanimation
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qvariantanimation.cpp \
|
SOURCES = tst_qvariantanimation.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,33 +1,24 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
QT += testlib
|
QT += testlib
|
||||||
|
SOURCES = ../tst_qtextcodec.cpp
|
||||||
|
|
||||||
SOURCES += ../tst_qtextcodec.cpp
|
!wince* {
|
||||||
|
TARGET = ../tst_qtextcodec
|
||||||
!wince*: {
|
win32: {
|
||||||
TARGET = ../tst_qtextcodec
|
CONFIG(debug, debug|release) {
|
||||||
|
TARGET = ../../debug/tst_qtextcodec
|
||||||
win32: {
|
} else {
|
||||||
CONFIG(debug, debug|release) {
|
TARGET = ../../release/tst_qtextcodec
|
||||||
TARGET = ../../debug/tst_qtextcodec
|
}
|
||||||
|
}
|
||||||
|
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
||||||
} else {
|
} else {
|
||||||
TARGET = ../../release/tst_qtextcodec
|
TARGET = tst_qtextcodec
|
||||||
}
|
addFiles.files = ../*.txt
|
||||||
}
|
addFiles.path = .
|
||||||
} else {
|
DEPLOYMENT += addFiles
|
||||||
TARGET = tst_qtextcodec
|
qt_not_deployed {
|
||||||
}
|
DEPLOYMENT_PLUGIN += qcncodecs qjpcodecs qkrcodecs qtwcodecs
|
||||||
|
}
|
||||||
wince* {
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
addFiles.files = ../*.txt
|
|
||||||
addFiles.path = .
|
|
||||||
DEPLOYMENT += addFiles
|
|
||||||
wince*|qt_not_deployed {
|
|
||||||
DEPLOYMENT_PLUGIN += qcncodecs qjpcodecs qkrcodecs qtwcodecs
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wince*: {
|
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
|
||||||
} else {
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfuture
|
TARGET = tst_qfuture
|
||||||
|
QT = core-private testlib
|
||||||
|
SOURCES = tst_qfuture.cpp
|
||||||
DEFINES += QT_STRICT_ITERATORS
|
DEFINES += QT_STRICT_ITERATORS
|
||||||
SOURCES += tst_qfuture.cpp
|
|
||||||
QT = core core-private testlib
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfuturesynchronizer
|
TARGET = tst_qfuturesynchronizer
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qfuturesynchronizer.cpp \
|
SOURCES = tst_qfuturesynchronizer.cpp
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfuturewatcher
|
TARGET = tst_qfuturewatcher
|
||||||
SOURCES += tst_qfuturewatcher.cpp
|
QT = core-private testlib
|
||||||
QT = core core-private testlib
|
SOURCES = tst_qfuturewatcher.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentfilter
|
TARGET = tst_qtconcurrentfilter
|
||||||
DEFINES += QT_STRICT_ITERATORS
|
|
||||||
SOURCES += tst_qtconcurrentfilter.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qtconcurrentfilter.cpp
|
||||||
|
DEFINES += QT_STRICT_ITERATORS
|
||||||
|
|
||||||
CONFIG += insignificant_test # See QTBUG-20688
|
CONFIG += insignificant_test # See QTBUG-20688
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentiteratekernel
|
TARGET = tst_qtconcurrentiteratekernel
|
||||||
SOURCES += tst_qtconcurrentiteratekernel.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qtconcurrentiteratekernel.cpp
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentmap
|
TARGET = tst_qtconcurrentmap
|
||||||
DEFINES += QT_STRICT_ITERATORS
|
|
||||||
SOURCES += tst_qtconcurrentmap.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qtconcurrentmap.cpp
|
||||||
|
DEFINES += QT_STRICT_ITERATORS
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentresultstore
|
TARGET = tst_qtconcurrentresultstore
|
||||||
|
QT = core-private testlib
|
||||||
|
SOURCES = tst_qtconcurrentresultstore.cpp
|
||||||
DEFINES += QT_STRICT_ITERATORS
|
DEFINES += QT_STRICT_ITERATORS
|
||||||
SOURCES += tst_qtconcurrentresultstore.cpp
|
|
||||||
QT = core core-private testlib
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentrun
|
TARGET = tst_qtconcurrentrun
|
||||||
SOURCES += tst_qtconcurrentrun.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qtconcurrentrun.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtconcurrentthreadengine
|
TARGET = tst_qtconcurrentthreadengine
|
||||||
SOURCES += tst_qtconcurrentthreadengine.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qtconcurrentthreadengine.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qthreadpool
|
TARGET = tst_qthreadpool
|
||||||
SOURCES += tst_qthreadpool.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qthreadpool.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_q_func_info
|
TARGET = tst_q_func_info
|
||||||
SOURCES += tst_q_func_info.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_q_func_info.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qflags
|
TARGET = tst_qflags
|
||||||
SOURCES += tst_qflags.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qflags.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qgetputenv
|
TARGET = tst_qgetputenv
|
||||||
SOURCES += tst_qgetputenv.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qgetputenv.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qglobal
|
TARGET = tst_qglobal
|
||||||
SOURCES += tst_qglobal.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qglobal.cpp
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qnumeric
|
TARGET = tst_qnumeric
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qnumeric.cpp
|
||||||
SOURCES += tst_qnumeric.cpp
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qrand
|
TARGET = tst_qrand
|
||||||
SOURCES += tst_qrand.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qrand.cpp
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qabstractfileengine
|
TARGET = tst_qabstractfileengine
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
|
||||||
SOURCES = tst_qabstractfileengine.cpp
|
SOURCES = tst_qabstractfileengine.cpp
|
||||||
RESOURCES += qabstractfileengine.qrc
|
RESOURCES += qabstractfileengine.qrc
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qbuffer
|
TARGET = tst_qbuffer
|
||||||
SOURCES += tst_qbuffer.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qbuffer.cpp
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qdatastream
|
TARGET = tst_qdatastream
|
||||||
SOURCES += tst_qdatastream.cpp
|
QT = gui widgets testlib
|
||||||
QT += gui widgets testlib
|
SOURCES = tst_qdatastream.cpp
|
||||||
wince*: {
|
|
||||||
addFiles.files = datastream.q42
|
|
||||||
addFiles.path = .
|
|
||||||
DEPLOYMENT += addFiles
|
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
|
||||||
} else {
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
wince* {
|
||||||
|
addFiles.files = datastream.q42
|
||||||
|
addFiles.path = .
|
||||||
|
DEPLOYMENT += addFiles
|
||||||
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
|
} else {
|
||||||
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
|
}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qdebug
|
TARGET = tst_qdebug
|
||||||
SOURCES += tst_qdebug.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qdebug.cpp
|
||||||
|
@ -1,19 +1,14 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qdir
|
TARGET = tst_qdir
|
||||||
SOURCES += tst_qdir.cpp
|
QT = core testlib
|
||||||
|
SOURCES = tst_qdir.cpp
|
||||||
RESOURCES += qdir.qrc
|
RESOURCES += qdir.qrc
|
||||||
QT = core testlib
|
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
DirFiles.files = testdir testData searchdir resources entrylist types tst_qdir.cpp
|
DirFiles.files = testdir testData searchdir resources entrylist types tst_qdir.cpp
|
||||||
DirFiles.path = .
|
DirFiles.path = .
|
||||||
DEPLOYMENT += DirFiles
|
DEPLOYMENT += DirFiles
|
||||||
}
|
|
||||||
|
|
||||||
wince* {
|
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qdiriterator
|
TARGET = tst_qdiriterator
|
||||||
SOURCES += tst_qdiriterator.cpp
|
|
||||||
RESOURCES += qdiriterator.qrc
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qdiriterator.cpp
|
||||||
|
RESOURCES += qdiriterator.qrc
|
||||||
|
|
||||||
wince*mips*|wincewm50smart-msvc200*: DEFINES += WINCE_BROKEN_ITERATE=1
|
wince*mips*|wincewm50smart-msvc200*: DEFINES += WINCE_BROKEN_ITERATE=1
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_largefile
|
TARGET = tst_largefile
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_largefile.cpp
|
SOURCES = tst_largefile.cpp
|
||||||
|
|
||||||
wince*: SOURCES += $$QT_SOURCE_TREE/src/corelib/kernel/qfunctions_wince.cpp
|
wince*: SOURCES += $$QT_SOURCE_TREE/src/corelib/kernel/qfunctions_wince.cpp
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
SOURCES += ../tst_qfile.cpp
|
TARGET = ../tst_qfile
|
||||||
|
SOURCES = ../tst_qfile.cpp
|
||||||
|
RESOURCES += ../qfile.qrc ../rename-fallback.qrc ../copy-fallback.qrc
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
QT = core gui testlib
|
QT = core gui testlib
|
||||||
@ -11,9 +13,6 @@ wince* {
|
|||||||
resour.path = resources
|
resour.path = resources
|
||||||
|
|
||||||
DEPLOYMENT += files resour
|
DEPLOYMENT += files resour
|
||||||
}
|
|
||||||
|
|
||||||
wince* {
|
|
||||||
SOURCES += $$QT_SOURCE_TREE/src/corelib/kernel/qfunctions_wince.cpp # needed for QT_OPEN
|
SOURCES += $$QT_SOURCE_TREE/src/corelib/kernel/qfunctions_wince.cpp # needed for QT_OPEN
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
@ -21,10 +20,6 @@ wince* {
|
|||||||
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
RESOURCES += ../qfile.qrc ../rename-fallback.qrc ../copy-fallback.qrc
|
|
||||||
|
|
||||||
TARGET = ../tst_qfile
|
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
TARGET = ../../debug/tst_qfile
|
TARGET = ../../debug/tst_qfile
|
||||||
|
@ -1,26 +1,17 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfileinfo
|
TARGET = tst_qfileinfo
|
||||||
SOURCES += tst_qfileinfo.cpp
|
|
||||||
|
|
||||||
QT = core-private testlib
|
QT = core-private testlib
|
||||||
|
SOURCES = tst_qfileinfo.cpp
|
||||||
|
RESOURCES += qfileinfo.qrc
|
||||||
RESOURCES += qfileinfo.qrc
|
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
deploy.files += qfileinfo.qrc tst_qfileinfo.cpp
|
deploy.files += qfileinfo.qrc tst_qfileinfo.cpp
|
||||||
res.files = resources\\file1 resources\\file1.ext1 resources\\file1.ext1.ext2
|
res.files = resources\\file1 resources\\file1.ext1 resources\\file1.ext1.ext2
|
||||||
res.path = resources
|
res.path = resources
|
||||||
DEPLOYMENT += deploy res
|
DEPLOYMENT += deploy res
|
||||||
}
|
|
||||||
|
|
||||||
win32*:LIBS += -ladvapi32 -lnetapi32
|
|
||||||
|
|
||||||
# support for running test from shadow build directory
|
|
||||||
wince* {
|
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG += parallel_test
|
win32*:LIBS += -ladvapi32 -lnetapi32
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfilesystementry
|
TARGET = tst_qfilesystementry
|
||||||
|
QT = core-private testlib
|
||||||
SOURCES += tst_qfilesystementry.cpp \
|
SOURCES = tst_qfilesystementry.cpp \
|
||||||
$${QT.core.sources}/io/qfilesystementry.cpp
|
$${QT.core.sources}/io/qfilesystementry.cpp
|
||||||
HEADERS += $${QT.core.sources}/io/qfilesystementry_p.h
|
HEADERS = $${QT.core.sources}/io/qfilesystementry_p.h
|
||||||
QT = core core-private testlib
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qfilesystemwatcher
|
TARGET = tst_qfilesystemwatcher
|
||||||
SOURCES += tst_qfilesystemwatcher.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qfilesystemwatcher.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,18 +1,15 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qiodevice
|
TARGET = tst_qiodevice
|
||||||
SOURCES += tst_qiodevice.cpp
|
|
||||||
|
|
||||||
QT = core network testlib
|
QT = core network testlib
|
||||||
|
SOURCES = tst_qiodevice.cpp
|
||||||
|
|
||||||
wince*: {
|
wince* {
|
||||||
addFiles.files = tst_qiodevice.cpp
|
addFiles.files = tst_qiodevice.cpp
|
||||||
addFiles.path = .
|
addFiles.path = .
|
||||||
DEPLOYMENT += addFiles
|
DEPLOYMENT += addFiles
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
!wince50standard-x86-msvc2005: DEFINES += WINCE_EMULATOR_TEST=1
|
!wince50standard-x86-msvc2005: DEFINES += WINCE_EMULATOR_TEST=1
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
MOC_DIR=tmp
|
MOC_DIR=tmp
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,105 +1,94 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
|
QT = core testlib network
|
||||||
SOURCES += ../tst_qprocess.cpp
|
|
||||||
!wince*: {
|
|
||||||
TARGET = ../tst_qprocess
|
|
||||||
|
|
||||||
win32: {
|
|
||||||
CONFIG(debug, debug|release) {
|
|
||||||
TARGET = ../../debug/tst_qprocess
|
|
||||||
} else {
|
|
||||||
TARGET = ../../release/tst_qprocess
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
TARGET = tst_qprocess
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
QT = core testlib
|
|
||||||
QT += network
|
|
||||||
|
|
||||||
embedded: QT += gui
|
embedded: QT += gui
|
||||||
|
SOURCES = ../tst_qprocess.cpp
|
||||||
|
|
||||||
wince*: {
|
!wince*: {
|
||||||
|
TARGET = ../tst_qprocess
|
||||||
|
win32: {
|
||||||
|
CONFIG(debug, debug|release) {
|
||||||
|
TARGET = ../../debug/tst_qprocess
|
||||||
|
} else {
|
||||||
|
TARGET = ../../release/tst_qprocess
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
TARGET = tst_qprocess
|
||||||
|
addFile_fileWriterProcess.files = $$OUT_PWD/../fileWriterProcess/fileWriterProcess.exe
|
||||||
|
addFile_fileWriterProcess.path = fileWriterProcess
|
||||||
|
|
||||||
addFile_fileWriterProcess.files = $$OUT_PWD/../fileWriterProcess/fileWriterProcess.exe
|
addFile_testBatFiles.files = $$PWD/../testBatFiles/*
|
||||||
addFile_fileWriterProcess.path = fileWriterProcess
|
addFile_testBatFiles.path = testBatFiles
|
||||||
|
|
||||||
addFile_testBatFiles.files = $$PWD/../testBatFiles/*
|
addFile_testDetached.files = $$OUT_PWD/../testDetached/testDetached.exe
|
||||||
addFile_testBatFiles.path = testBatFiles
|
addFile_testDetached.path = testDetached
|
||||||
|
|
||||||
addFile_testDetached.files = $$OUT_PWD/../testDetached/testDetached.exe
|
addFile_testExitCodes.files = $$OUT_PWD/../testExitCodes/testExitCodes.exe
|
||||||
addFile_testDetached.path = testDetached
|
addFile_testExitCodes.path = testExitCodes
|
||||||
|
|
||||||
addFile_testExitCodes.files = $$OUT_PWD/../testExitCodes/testExitCodes.exe
|
addFile_testGuiProcess.files = $$OUT_PWD/../testGuiProcess/testGuiProcess.exe
|
||||||
addFile_testExitCodes.path = testExitCodes
|
addFile_testGuiProcess.path = testGuiProcess
|
||||||
|
|
||||||
addFile_testGuiProcess.files = $$OUT_PWD/../testGuiProcess/testGuiProcess.exe
|
addFile_testProcessCrash.files = $$OUT_PWD/../testProcessCrash/testProcessCrash.exe
|
||||||
addFile_testGuiProcess.path = testGuiProcess
|
addFile_testProcessCrash.path = testProcessCrash
|
||||||
|
|
||||||
addFile_testProcessCrash.files = $$OUT_PWD/../testProcessCrash/testProcessCrash.exe
|
addFile_testProcessDeadWhileReading.files = $$OUT_PWD/../testProcessDeadWhileReading/testProcessDeadWhileReading.exe
|
||||||
addFile_testProcessCrash.path = testProcessCrash
|
addFile_testProcessDeadWhileReading.path = testProcessDeadWhileReading
|
||||||
|
|
||||||
addFile_testProcessDeadWhileReading.files = $$OUT_PWD/../testProcessDeadWhileReading/testProcessDeadWhileReading.exe
|
addFile_testProcessEcho.files = $$OUT_PWD/../testProcessEcho/testProcessEcho.exe
|
||||||
addFile_testProcessDeadWhileReading.path = testProcessDeadWhileReading
|
addFile_testProcessEcho.path = testProcessEcho
|
||||||
|
|
||||||
addFile_testProcessEcho.files = $$OUT_PWD/../testProcessEcho/testProcessEcho.exe
|
addFile_testProcessEcho2.files = $$OUT_PWD/../testProcessEcho2/testProcessEcho2.exe
|
||||||
addFile_testProcessEcho.path = testProcessEcho
|
addFile_testProcessEcho2.path = testProcessEcho2
|
||||||
|
|
||||||
addFile_testProcessEcho2.files = $$OUT_PWD/../testProcessEcho2/testProcessEcho2.exe
|
addFile_testProcessEcho3.files = $$OUT_PWD/../testProcessEcho3/testProcessEcho3.exe
|
||||||
addFile_testProcessEcho2.path = testProcessEcho2
|
addFile_testProcessEcho3.path = testProcessEcho3
|
||||||
|
|
||||||
addFile_testProcessEcho3.files = $$OUT_PWD/../testProcessEcho3/testProcessEcho3.exe
|
addFile_testProcessEOF.files = $$OUT_PWD/../testProcessEOF/testProcessEOF.exe
|
||||||
addFile_testProcessEcho3.path = testProcessEcho3
|
addFile_testProcessEOF.path = testProcessEOF
|
||||||
|
|
||||||
addFile_testProcessEOF.files = $$OUT_PWD/../testProcessEOF/testProcessEOF.exe
|
addFile_testProcessLoopback.files = $$OUT_PWD/../testProcessLoopback/testProcessLoopback.exe
|
||||||
addFile_testProcessEOF.path = testProcessEOF
|
addFile_testProcessLoopback.path = testProcessLoopback
|
||||||
|
|
||||||
addFile_testProcessLoopback.files = $$OUT_PWD/../testProcessLoopback/testProcessLoopback.exe
|
addFile_testProcessNormal.files = $$OUT_PWD/../testProcessNormal/testProcessNormal.exe
|
||||||
addFile_testProcessLoopback.path = testProcessLoopback
|
addFile_testProcessNormal.path = testProcessNormal
|
||||||
|
|
||||||
addFile_testProcessNormal.files = $$OUT_PWD/../testProcessNormal/testProcessNormal.exe
|
addFile_testProcessOutput.files = $$OUT_PWD/../testProcessOutput/testProcessOutput.exe
|
||||||
addFile_testProcessNormal.path = testProcessNormal
|
addFile_testProcessOutput.path = testProcessOutput
|
||||||
|
|
||||||
addFile_testProcessOutput.files = $$OUT_PWD/../testProcessOutput/testProcessOutput.exe
|
addFile_testProcessNoSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/nospace.exe
|
||||||
addFile_testProcessOutput.path = testProcessOutput
|
addFile_testProcessNoSpacesArgs.path = testProcessSpacesArgs
|
||||||
|
|
||||||
addFile_testProcessNoSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/nospace.exe
|
addFile_testProcessOneSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/"one space".exe
|
||||||
addFile_testProcessNoSpacesArgs.path = testProcessSpacesArgs
|
addFile_testProcessOneSpacesArgs.path = testProcessSpacesArgs
|
||||||
|
|
||||||
addFile_testProcessOneSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/"one space".exe
|
addFile_testProcessTwoSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/"two space s".exe
|
||||||
addFile_testProcessOneSpacesArgs.path = testProcessSpacesArgs
|
addFile_testProcessTwoSpacesArgs.path = testProcessSpacesArgs
|
||||||
|
|
||||||
addFile_testProcessTwoSpacesArgs.files = $$OUT_PWD/../testProcessSpacesArgs/"two space s".exe
|
addFile_testSoftExit.files = $$OUT_PWD/../testSoftExit/testSoftExit.exe
|
||||||
addFile_testProcessTwoSpacesArgs.path = testProcessSpacesArgs
|
addFile_testSoftExit.path = testSoftExit
|
||||||
|
|
||||||
addFile_testSoftExit.files = $$OUT_PWD/../testSoftExit/testSoftExit.exe
|
addFile_testSpaceInName.files = $$OUT_PWD/../"test Space In Name"/testSpaceInName.exe
|
||||||
addFile_testSoftExit.path = testSoftExit
|
addFile_testSpaceInName.path = "test Space In Name"
|
||||||
|
|
||||||
addFile_testSpaceInName.files = $$OUT_PWD/../"test Space In Name"/testSpaceInName.exe
|
DEPLOYMENT += addFile_fileWriterProcess \
|
||||||
addFile_testSpaceInName.path = "test Space In Name"
|
addFile_testBatFiles \
|
||||||
|
addFile_testDetached \
|
||||||
|
addFile_testExitCodes \
|
||||||
DEPLOYMENT += addFile_fileWriterProcess \
|
addFile_testGuiProcess \
|
||||||
addFile_testBatFiles \
|
addFile_testProcessCrash \
|
||||||
addFile_testDetached \
|
addFile_testProcessDeadWhileReading \
|
||||||
addFile_testExitCodes \
|
addFile_testProcessEcho \
|
||||||
addFile_testGuiProcess \
|
addFile_testProcessEcho2 \
|
||||||
addFile_testProcessCrash \
|
addFile_testProcessEcho3 \
|
||||||
addFile_testProcessDeadWhileReading \
|
addFile_testProcessEchoGui \
|
||||||
addFile_testProcessEcho \
|
addFile_testProcessEOF \
|
||||||
addFile_testProcessEcho2 \
|
addFile_testProcessLoopback \
|
||||||
addFile_testProcessEcho3 \
|
addFile_testProcessNormal \
|
||||||
addFile_testProcessEchoGui \
|
addFile_testProcessOutput \
|
||||||
addFile_testProcessEOF \
|
addFile_testProcessNoSpacesArgs \
|
||||||
addFile_testProcessLoopback \
|
addFile_testProcessOneSpacesArgs \
|
||||||
addFile_testProcessNormal \
|
addFile_testProcessTwoSpacesArgs \
|
||||||
addFile_testProcessOutput \
|
addFile_testSoftExit \
|
||||||
addFile_testProcessNoSpacesArgs \
|
addFile_testSpaceInName
|
||||||
addFile_testProcessOneSpacesArgs \
|
|
||||||
addFile_testProcessTwoSpacesArgs \
|
|
||||||
addFile_testSoftExit \
|
|
||||||
addFile_testSpaceInName
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qprocessenvironment
|
TARGET = tst_qprocessenvironment
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qprocessenvironment.cpp
|
||||||
SOURCES += tst_qprocessenvironment.cpp
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,12 +1,7 @@
|
|||||||
######################################################################
|
CONFIG += testcase parallel_test
|
||||||
# Automatically generated by qmake (2.00a) ma 2. mai 16:14:33 2005
|
|
||||||
######################################################################
|
|
||||||
|
|
||||||
CONFIG += testcase
|
|
||||||
load(resources)
|
load(resources)
|
||||||
|
QT = core testlib
|
||||||
# Input
|
SOURCES = tst_qresourceengine.cpp
|
||||||
SOURCES += tst_qresourceengine.cpp
|
|
||||||
RESOURCES += testqrc/test.qrc
|
RESOURCES += testqrc/test.qrc
|
||||||
|
|
||||||
runtime_resource.target = runtime_resource.rcc
|
runtime_resource.target = runtime_resource.rcc
|
||||||
@ -15,7 +10,6 @@ runtime_resource.commands = $$QMAKE_RCC -root /runtime_resource/ -binary $${runt
|
|||||||
QMAKE_EXTRA_TARGETS = runtime_resource
|
QMAKE_EXTRA_TARGETS = runtime_resource
|
||||||
PRE_TARGETDEPS += $${runtime_resource.target}
|
PRE_TARGETDEPS += $${runtime_resource.target}
|
||||||
|
|
||||||
QT = core testlib
|
|
||||||
wince* {
|
wince* {
|
||||||
deploy.files += runtime_resource.rcc parentdir.txt
|
deploy.files += runtime_resource.rcc parentdir.txt
|
||||||
test.files = testqrc/*
|
test.files = testqrc/*
|
||||||
@ -37,6 +31,5 @@ wince* {
|
|||||||
DEPLOYMENT += deploy test alias other search1 search2 sub testsub testsub2
|
DEPLOYMENT += deploy test alias other search1 search2 sub testsub testsub2
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,11 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qsettings
|
TARGET = tst_qsettings
|
||||||
|
QT = core-private gui testlib
|
||||||
QT += core-private testlib
|
SOURCES = tst_qsettings.cpp
|
||||||
|
|
||||||
SOURCES += tst_qsettings.cpp
|
|
||||||
RESOURCES += qsettings.qrc
|
RESOURCES += qsettings.qrc
|
||||||
|
|
||||||
win32-msvc*:LIBS += advapi32.lib
|
win32-msvc*:LIBS += advapi32.lib
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qstandardpaths
|
TARGET = tst_qstandardpaths
|
||||||
CONFIG += testcase
|
|
||||||
SOURCES += tst_qstandardpaths.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qstandardpaths.cpp
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtemporaryfile
|
TARGET = tst_qtemporaryfile
|
||||||
SOURCES += tst_qtemporaryfile.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qtemporaryfile.cpp
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,19 +1,16 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
SOURCES += ../tst_qtextstream.cpp
|
|
||||||
|
|
||||||
TARGET = ../tst_qtextstream
|
TARGET = ../tst_qtextstream
|
||||||
|
QT = core network testlib
|
||||||
win32 {
|
SOURCES = ../tst_qtextstream.cpp
|
||||||
CONFIG(debug, debug|release) {
|
|
||||||
TARGET = ../../debug/tst_qtextstream
|
|
||||||
} else {
|
|
||||||
TARGET = ../../release/tst_qtextstream
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
RESOURCES += ../qtextstream.qrc
|
RESOURCES += ../qtextstream.qrc
|
||||||
|
|
||||||
QT = core network testlib
|
win32 {
|
||||||
|
CONFIG(debug, debug|release) {
|
||||||
|
TARGET = ../../debug/tst_qtextstream
|
||||||
|
} else {
|
||||||
|
TARGET = ../../release/tst_qtextstream
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
addFiles.files = ../rfc3261.txt ../shift-jis.txt ../task113817.txt ../qtextstream.qrc ../tst_qtextstream.cpp
|
addFiles.files = ../rfc3261.txt ../shift-jis.txt ../task113817.txt ../qtextstream.qrc ../tst_qtextstream.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qurl
|
TARGET = tst_qurl
|
||||||
SOURCES += tst_qurl.cpp
|
QT = core-private testlib
|
||||||
QT = core core-private testlib
|
SOURCES = tst_qurl.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qabstractitemmodel
|
TARGET = tst_qabstractitemmodel
|
||||||
|
QT = widgets testlib
|
||||||
|
|
||||||
mtdir = ../../../integrationtests/modeltest
|
mtdir = ../../../integrationtests/modeltest
|
||||||
INCLUDEPATH += $$PWD/$${mtdir}
|
INCLUDEPATH += $$PWD/$${mtdir}
|
||||||
QT += widgets testlib
|
SOURCES = tst_qabstractitemmodel.cpp $${mtdir}/dynamictreemodel.cpp $${mtdir}/modeltest.cpp
|
||||||
SOURCES += tst_qabstractitemmodel.cpp $${mtdir}/dynamictreemodel.cpp $${mtdir}/modeltest.cpp
|
HEADERS = $${mtdir}/dynamictreemodel.h $${mtdir}/modeltest.h
|
||||||
HEADERS += $${mtdir}/dynamictreemodel.h $${mtdir}/modeltest.h
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qcoreapplication
|
TARGET = tst_qcoreapplication
|
||||||
SOURCES += tst_qcoreapplication.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qcoreapplication.cpp
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qeventloop
|
TARGET = tst_qeventloop
|
||||||
SOURCES += tst_qeventloop.cpp
|
QT = network testlib
|
||||||
QT -= gui
|
SOURCES = tst_qeventloop.cpp
|
||||||
QT += network testlib
|
|
||||||
|
|
||||||
win32:!wince*:LIBS += -luser32
|
win32:!wince*:LIBS += -luser32
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qitemmodel
|
TARGET = tst_qitemmodel
|
||||||
SOURCES += tst_qitemmodel.cpp
|
QT = widgets sql testlib
|
||||||
|
SOURCES = tst_qitemmodel.cpp
|
||||||
QT += widgets sql testlib
|
|
||||||
|
|
||||||
# NOTE: The deployment of the sqldrivers is disabled on purpose.
|
# NOTE: The deployment of the sqldrivers is disabled on purpose.
|
||||||
# If we deploy the plugins, they are loaded twice when running
|
# If we deploy the plugins, they are loaded twice when running
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmath
|
TARGET = tst_qmath
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qmath.cpp
|
||||||
SOURCES += tst_qmath.cpp
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qmetaobject
|
TARGET = tst_qmetaobject
|
||||||
|
|
||||||
QT = core gui widgets testlib
|
QT = core gui widgets testlib
|
||||||
|
SOURCES = tst_qmetaobject.cpp
|
||||||
SOURCES += tst_qmetaobject.cpp
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmetaobjectbuilder
|
TARGET = tst_qmetaobjectbuilder
|
||||||
|
QT = core-private gui-private testlib
|
||||||
|
SOURCES = tst_qmetaobjectbuilder.cpp
|
||||||
macx:CONFIG -= app_bundle
|
macx:CONFIG -= app_bundle
|
||||||
|
|
||||||
SOURCES += \
|
|
||||||
tst_qmetaobjectbuilder.cpp
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
QT += core-private gui-private testlib
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qmetaproperty
|
TARGET = tst_qmetaproperty
|
||||||
QT = core gui testlib
|
QT = core gui testlib
|
||||||
SOURCES += tst_qmetaproperty.cpp
|
SOURCES = tst_qmetaproperty.cpp
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmetatype
|
TARGET = tst_qmetatype
|
||||||
SOURCES += tst_qmetatype.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qmetatype.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qmimedata
|
TARGET = tst_qmimedata
|
||||||
SOURCES += tst_qmimedata.cpp
|
QT = gui testlib
|
||||||
QT += testlib
|
SOURCES = tst_qmimedata.cpp
|
||||||
|
|
||||||
|
@ -1,16 +1,13 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qobject
|
TARGET = tst_qobject
|
||||||
SOURCES += tst_qobject.cpp
|
QT = core-private network gui testlib
|
||||||
|
SOURCES = tst_qobject.cpp
|
||||||
|
|
||||||
# this is here for a reason, moc_oldnormalizedobject.cpp is not auto-generated, it was generated by
|
# this is here for a reason, moc_oldnormalizedobject.cpp is not auto-generated, it was generated by
|
||||||
# moc from Qt 4.6, and should *not* be generated by the current moc
|
# moc from Qt 4.6, and should *not* be generated by the current moc
|
||||||
SOURCES += moc_oldnormalizeobject.cpp
|
SOURCES += moc_oldnormalizeobject.cpp
|
||||||
|
|
||||||
QT = core-private \
|
wince* {
|
||||||
network \
|
|
||||||
gui \
|
|
||||||
testlib
|
|
||||||
wince*: {
|
|
||||||
addFiles.files = signalbug.exe
|
addFiles.files = signalbug.exe
|
||||||
addFiles.path = .
|
addFiles.path = .
|
||||||
DEPLOYMENT += addFiles
|
DEPLOYMENT += addFiles
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qpointer
|
TARGET = tst_qpointer
|
||||||
QT += widgets testlib
|
QT = widgets testlib
|
||||||
SOURCES += tst_qpointer.cpp
|
SOURCES = tst_qpointer.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qsignalmapper
|
TARGET = tst_qsignalmapper
|
||||||
QT += widgets testlib
|
QT = widgets testlib
|
||||||
SOURCES += tst_qsignalmapper.cpp
|
SOURCES = tst_qsignalmapper.cpp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qsocketnotifier
|
TARGET = tst_qsocketnotifier
|
||||||
SOURCES += tst_qsocketnotifier.cpp
|
|
||||||
QT = core-private network-private testlib
|
QT = core-private network-private testlib
|
||||||
|
SOURCES = tst_qsocketnotifier.cpp
|
||||||
|
|
||||||
requires(contains(QT_CONFIG,private_tests))
|
requires(contains(QT_CONFIG,private_tests))
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qtimer
|
TARGET = tst_qtimer
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qtimer.cpp
|
SOURCES = tst_qtimer.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qtranslator
|
TARGET = tst_qtranslator
|
||||||
QT += widgets testlib
|
QT = widgets testlib
|
||||||
SOURCES += tst_qtranslator.cpp
|
SOURCES = tst_qtranslator.cpp
|
||||||
RESOURCES += qtranslator.qrc
|
RESOURCES += qtranslator.qrc
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qvariant
|
TARGET = tst_qvariant
|
||||||
SOURCES += tst_qvariant.cpp
|
QT = widgets network testlib
|
||||||
QT += widgets network testlib
|
SOURCES = tst_qvariant.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qwineventnotifier
|
TARGET = tst_qwineventnotifier
|
||||||
SOURCES += tst_qwineventnotifier.cpp
|
QT = core-private testlib
|
||||||
QT = core core-private testlib
|
SOURCES = tst_qwineventnotifier.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
SOURCES += ../tst_qlibrary.cpp
|
TARGET = ../tst_qlibrary
|
||||||
TARGET = ../tst_qlibrary
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = ../tst_qlibrary.cpp
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
TARGET = ../../debug/tst_qlibrary
|
TARGET = ../../debug/tst_qlibrary
|
||||||
} else {
|
} else {
|
||||||
TARGET = ../../release/tst_qlibrary
|
TARGET = ../../release/tst_qlibrary
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wince*: {
|
wince* {
|
||||||
addFiles.files = ../*.dll ../*.dl2 ../mylib_noextension
|
addFiles.files = ../*.dll ../*.dl2 ../mylib_noextension
|
||||||
addFiles.path = .
|
addFiles.path = .
|
||||||
DEPLOYMENT += addFiles
|
DEPLOYMENT += addFiles
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qplugin
|
TARGET = tst_qplugin
|
||||||
|
|
||||||
SOURCES = tst_qplugin.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qplugin.cpp
|
||||||
|
|
||||||
wince*: {
|
wince* {
|
||||||
plugins.files = plugins/*
|
plugins.files = plugins/*
|
||||||
plugins.path = plugins
|
plugins.path = plugins
|
||||||
DEPLOYMENT += plugins
|
DEPLOYMENT += plugins
|
||||||
|
@ -1,25 +1,22 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
SOURCES += ../tst_qpluginloader.cpp
|
|
||||||
TARGET = ../tst_qpluginloader
|
TARGET = ../tst_qpluginloader
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
HEADERS += ../theplugin/plugininterface.h
|
SOURCES = ../tst_qpluginloader.cpp
|
||||||
|
HEADERS = ../theplugin/plugininterface.h
|
||||||
|
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
TARGET = ../../debug/tst_qpluginloader
|
TARGET = ../../debug/tst_qpluginloader
|
||||||
} else {
|
} else {
|
||||||
TARGET = ../../release/tst_qpluginloader
|
TARGET = ../../release/tst_qpluginloader
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wince* {
|
||||||
wince*: {
|
|
||||||
addFiles.files = $$OUT_PWD/../bin/*.dll
|
addFiles.files = $$OUT_PWD/../bin/*.dll
|
||||||
addFiles.path = bin
|
addFiles.path = bin
|
||||||
DEPLOYMENT += addFiles
|
DEPLOYMENT += addFiles
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
|
||||||
mac*:CONFIG+=insignificant_test
|
|
||||||
|
|
||||||
CONFIG += insignificant_test # QTBUG-21402
|
CONFIG += insignificant_test # QTBUG-21402
|
||||||
|
@ -1,22 +1,20 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
|
|
||||||
QT = core testlib
|
|
||||||
SOURCES += ../tst_quuid.cpp
|
|
||||||
TARGET = tst_quuid
|
TARGET = tst_quuid
|
||||||
|
QT = core testlib
|
||||||
|
SOURCES = ../tst_quuid.cpp
|
||||||
|
|
||||||
CONFIG(debug_and_release_target) {
|
CONFIG(debug_and_release_target) {
|
||||||
CONFIG(debug, debug|release) {
|
CONFIG(debug, debug|release) {
|
||||||
DESTDIR = ../debug
|
DESTDIR = ../debug
|
||||||
} else {
|
} else {
|
||||||
DESTDIR = ../release
|
DESTDIR = ../release
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DESTDIR = ..
|
DESTDIR = ..
|
||||||
}
|
}
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
addFile_processUniqueness.files = $$OUT_PWD/../testProcessUniqueness/testProcessUniqueness.exe
|
addFile_processUniqueness.files = $$OUT_PWD/../testProcessUniqueness/testProcessUniqueness.exe
|
||||||
addFile_processUniqueness.path = testProcessUniqueness
|
addFile_processUniqueness.path = testProcessUniqueness
|
||||||
|
DEPLOYMENT += addFile_processUniqueness
|
||||||
DEPLOYMENT += addFile_processUniqueness
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qstate
|
TARGET = tst_qstate
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qstate.cpp
|
SOURCES = tst_qstate.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qstatemachine
|
TARGET = tst_qstatemachine
|
||||||
QT += widgets testlib
|
QT = core-private testlib gui widgets
|
||||||
QT += core core-private gui widgets
|
SOURCES = tst_qstatemachine.cpp
|
||||||
SOURCES += tst_qstatemachine.cpp
|
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qatomicint
|
TARGET = tst_qatomicint
|
||||||
SOURCES += tst_qatomicint.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qatomicint.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qatomicpointer
|
TARGET = tst_qatomicpointer
|
||||||
SOURCES += tst_qatomicpointer.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qatomicpointer.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmutex
|
TARGET = tst_qmutex
|
||||||
SOURCES += tst_qmutex.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qmutex.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmutexlocker
|
TARGET = tst_qmutexlocker
|
||||||
SOURCES += tst_qmutexlocker.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qmutexlocker.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qreadlocker
|
TARGET = tst_qreadlocker
|
||||||
SOURCES += tst_qreadlocker.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qreadlocker.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qreadwritelock
|
TARGET = tst_qreadwritelock
|
||||||
SOURCES += tst_qreadwritelock.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qreadwritelock.cpp
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qsemaphore
|
TARGET = tst_qsemaphore
|
||||||
SOURCES += tst_qsemaphore.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qsemaphore.cpp
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
mac*:CONFIG+=insignificant_test
|
mac*:CONFIG+=insignificant_test
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qthread
|
TARGET = tst_qthread
|
||||||
SOURCES += tst_qthread.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qthread.cpp
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qthreadonce
|
TARGET = tst_qthreadonce
|
||||||
SOURCES += tst_qthreadonce.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qthreadonce.cpp
|
||||||
|
|
||||||
# Don't use gcc's threadsafe statics
|
# Don't use gcc's threadsafe statics
|
||||||
# Note: some versions of gcc generate invalid code with this option...
|
# Note: some versions of gcc generate invalid code with this option...
|
||||||
@ -10,5 +10,3 @@ QT = core testlib
|
|||||||
|
|
||||||
# Temporary:
|
# Temporary:
|
||||||
SOURCES += qthreadonce.cpp
|
SOURCES += qthreadonce.cpp
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qthreadstorage
|
TARGET = tst_qthreadstorage
|
||||||
SOURCES += tst_qthreadstorage.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qthreadstorage.cpp
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qwaitcondition
|
TARGET = tst_qwaitcondition
|
||||||
SOURCES += tst_qwaitcondition.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qwaitcondition.cpp
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qwritelocker
|
TARGET = tst_qwritelocker
|
||||||
SOURCES += tst_qwritelocker.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qwritelocker.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qalgorithms
|
TARGET = tst_qalgorithms
|
||||||
SOURCES += tst_qalgorithms.cpp
|
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qalgorithms.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qbitarray
|
TARGET = tst_qbitarray
|
||||||
SOURCES += tst_qbitarray.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qbitarray.cpp
|
||||||
|
@ -1,20 +1,13 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qbytearray
|
TARGET = tst_qbytearray
|
||||||
SOURCES += tst_qbytearray.cpp
|
QT = core-private testlib
|
||||||
|
SOURCES = tst_qbytearray.cpp
|
||||||
|
|
||||||
QT = core core-private testlib
|
|
||||||
|
|
||||||
wince* {
|
wince* {
|
||||||
addFile.files = rfc3252.txt
|
addFile.files = rfc3252.txt
|
||||||
addFile.path = .
|
addFile.path = .
|
||||||
DEPLOYMENT += addFile
|
DEPLOYMENT += addFile
|
||||||
}
|
DEFINES += SRCDIR=\\\"./\\\"
|
||||||
|
|
||||||
wince* {
|
|
||||||
DEFINES += SRCDIR=\\\"./\\\"
|
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qbytearraymatcher
|
TARGET = tst_qbytearraymatcher
|
||||||
SOURCES += tst_qbytearraymatcher.cpp
|
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qbytearraymatcher.cpp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qcache
|
TARGET = tst_qcache
|
||||||
SOURCES += tst_qcache.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qcache.cpp
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qchar
|
TARGET = tst_qchar
|
||||||
SOURCES += tst_qchar.cpp
|
QT = core-private testlib
|
||||||
|
SOURCES = tst_qchar.cpp
|
||||||
|
|
||||||
QT = core core-private testlib
|
wince* {
|
||||||
|
|
||||||
wince*: {
|
|
||||||
deploy.files += NormalizationTest.txt
|
deploy.files += NormalizationTest.txt
|
||||||
DEPLOYMENT += deploy
|
DEPLOYMENT += deploy
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,8 +1,4 @@
|
|||||||
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qcontiguouscache
|
TARGET = tst_qcontiguouscache
|
||||||
CONFIG += testcase
|
|
||||||
|
|
||||||
SOURCES += tst_qcontiguouscache.cpp
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qcontiguouscache.cpp
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qcryptographichash
|
TARGET = tst_qcryptographichash
|
||||||
SOURCES += tst_qcryptographichash.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qcryptographichash.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qdate
|
TARGET = tst_qdate
|
||||||
SOURCES += tst_qdate.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qdate.cpp
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qdatetime
|
TARGET = tst_qdatetime
|
||||||
|
QT = core-private testlib
|
||||||
SOURCES += tst_qdatetime.cpp
|
SOURCES = tst_qdatetime.cpp
|
||||||
QT = core core-private testlib
|
|
||||||
|
|
||||||
# For some reason using optimization here triggers a compiler issue, which causes an exception
|
# For some reason using optimization here triggers a compiler issue, which causes an exception
|
||||||
# However, the code is correct
|
# However, the code is correct
|
||||||
@ -11,6 +10,3 @@ win32-msvc|win32-msvc9x {
|
|||||||
QMAKE_CFLAGS_RELEASE -= -O1
|
QMAKE_CFLAGS_RELEASE -= -O1
|
||||||
QMAKE_CXXFLAGS_RELEASE -= -O1
|
QMAKE_CXXFLAGS_RELEASE -= -O1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qeasingcurve
|
TARGET = tst_qeasingcurve
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qeasingcurve.cpp
|
SOURCES = tst_qeasingcurve.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qelapsedtimer
|
TARGET = tst_qelapsedtimer
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qelapsedtimer.cpp
|
||||||
|
|
||||||
SOURCES += tst_qelapsedtimer.cpp
|
|
||||||
wince* {
|
wince* {
|
||||||
DEFINES += SRCDIR=\\\"\\\"
|
DEFINES += SRCDIR=\\\"\\\"
|
||||||
} else {
|
} else {
|
||||||
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
||||||
}
|
}
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qexplicitlyshareddatapointer
|
TARGET = tst_qexplicitlyshareddatapointer
|
||||||
SOURCES += tst_qexplicitlyshareddatapointer.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qexplicitlyshareddatapointer.cpp
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qfreelist
|
TARGET = tst_qfreelist
|
||||||
SOURCES += tst_qfreelist.cpp
|
QT = core-private testlib
|
||||||
QT += core-private testlib
|
SOURCES = tst_qfreelist.cpp
|
||||||
QT -= gui
|
|
||||||
!contains(QT_CONFIG,private_tests): SOURCES += $$QT.core.sources/tools/qfreelist.cpp
|
!contains(QT_CONFIG,private_tests): SOURCES += $$QT.core.sources/tools/qfreelist.cpp
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qhash
|
TARGET = tst_qhash
|
||||||
SOURCES += tst_qhash.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qhash.cpp
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qline
|
TARGET = tst_qline
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qline.cpp
|
SOURCES = tst_qline.cpp
|
||||||
unix:!mac:!vxworks:LIBS+=-lm
|
unix:!mac:!vxworks:LIBS+=-lm
|
||||||
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
TARGET = tst_qlist
|
TARGET = tst_qlist
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
SOURCES += tst_qlist.cpp
|
SOURCES = tst_qlist.cpp
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,30 +1,20 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
SOURCES += ../tst_qlocale.cpp
|
QT = core testlib network
|
||||||
|
|
||||||
!wince*: {
|
|
||||||
TARGET = ../tst_qlocale
|
|
||||||
|
|
||||||
win32: {
|
|
||||||
CONFIG(debug, debug|release) {
|
|
||||||
TARGET = ../../debug/tst_qlocale
|
|
||||||
} else {
|
|
||||||
TARGET = ../../release/tst_qlocale
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
TARGET = tst_qlocale
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
QT = core testlib
|
|
||||||
QT += network
|
|
||||||
embedded: QT += gui
|
embedded: QT += gui
|
||||||
|
SOURCES = ../tst_qlocale.cpp
|
||||||
|
|
||||||
wince*: {
|
!wince* {
|
||||||
addFiles.files = \
|
TARGET = ../tst_qlocale
|
||||||
../syslocaleapp
|
win32: {
|
||||||
|
CONFIG(debug, debug|release) {
|
||||||
addFiles.path = "\\Program Files\\tst_qlocale"
|
TARGET = ../../debug/tst_qlocale
|
||||||
DEPLOYMENT += addFiles
|
} else {
|
||||||
|
TARGET = ../../release/tst_qlocale
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
TARGET = tst_qlocale
|
||||||
|
addFiles.files = ../syslocaleapp
|
||||||
|
addFiles.path = "\\Program Files\\tst_qlocale"
|
||||||
|
DEPLOYMENT += addFiles
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmap
|
TARGET = tst_qmap
|
||||||
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
|
SOURCES = tst_qmap.cpp
|
||||||
SOURCES += tst_qmap.cpp
|
|
||||||
CONFIG += parallel_test
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase parallel_test
|
||||||
TARGET = tst_qmargins
|
TARGET = tst_qmargins
|
||||||
SOURCES += tst_qmargins.cpp
|
|
||||||
QT = core testlib
|
QT = core testlib
|
||||||
CONFIG += parallel_test
|
SOURCES = tst_qmargins.cpp
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user