b92fed185e
To increase the effective test coverage, this patch re-enables the tst_qgraphicsscene test case as such, and instead disables only the test functions that are currently failing in CI. Task-number: QTBUG-22453 Change-Id: Idd229532787ce8138d8e1c86daf1f91b90e87e38 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
20 lines
532 B
Prolog
20 lines
532 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qgraphicsscene
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private
|
|
SOURCES += tst_qgraphicsscene.cpp
|
|
RESOURCES += images.qrc
|
|
win32:!wince*: LIBS += -lUser32
|
|
|
|
!wince*:DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
DEFINES += QT_NO_CAST_TO_ASCII
|
|
|
|
wince* {
|
|
rootFiles.files = Ash_European.jpg graphicsScene_selection.data
|
|
rootFiles.path = .
|
|
renderFiles.files = testData\\render\\*
|
|
renderFiles.path = testData\\render
|
|
DEPLOYMENT += rootFiles renderFiles
|
|
DEFINES += SRCDIR=\\\".\\\"
|
|
}
|