7a760f5ed9
This test needs to have a test environment available on the regular file system, so we create this when initializing the test. In addition we QEXPECT_FAIL one of the tests which seems to expose a legitimate bug. A bug report has been created for this. Change-Id: I7c90aea78a067815cb647a51db5d91a652a9fc1c Reviewed-by: BogDan Vatra <bogdan@kde.org>
26 lines
498 B
Prolog
26 lines
498 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qdirmodel
|
|
QT += widgets testlib
|
|
SOURCES += tst_qdirmodel.cpp
|
|
|
|
wince* {
|
|
addit.files = dirtest\\test1\\*
|
|
addit.path = dirtest\\test1
|
|
tests.files = test\\*
|
|
tests.path = test
|
|
sourceFile.files = tst_qdirmodel.cpp
|
|
sourceFile.path = .
|
|
DEPLOYMENT += addit tests sourceFile
|
|
}
|
|
|
|
android|wince*: {
|
|
DEFINES += SRCDIR=\\\"./\\\"
|
|
} else {
|
|
DEFINES += SRCDIR=\\\"$$PWD/\\\"
|
|
}
|
|
|
|
android: !android-no-sdk {
|
|
RESOURCES += \
|
|
testdata.qrc
|
|
}
|