summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@qt.io>2023-08-01 14:56:28 +0200
committerRobert Griebl <robert.griebl@qt.io>2023-08-02 01:11:52 +0200
commit0f39a152ce59126c647ef4c18a9f599b35c4f938 (patch)
tree14f109e1762af6340772729e4d8b2c9436682994 /tests
parentee3c0d8a8bef373c53ff81000fe6332621985d05 (diff)
Make our TestRunner #ifdef mess a little bit more readable
Moved most TestRunner specific code out of appman.cpp and into testrunner.cpp. Also got rid of the buildConfig root context property. Change-Id: I1dbe7aaf8374c9eaadf5ec72731c4300a3e769b6 Reviewed-by: Bernd Weimer <bernd.weimer@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/simple/tst_applicationmanager.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/simple/tst_applicationmanager.qml b/tests/auto/qml/simple/tst_applicationmanager.qml
index a2e6a408..12cf73d2 100644
--- a/tests/auto/qml/simple/tst_applicationmanager.qml
+++ b/tests/auto/qml/simple/tst_applicationmanager.qml
@@ -17,7 +17,7 @@ TestCase {
property var capsApplication
// Either appman is build in single-process mode or it was started with --force-single-process
property bool singleProcess : Qt.application.arguments.indexOf("--force-single-process") !== -1
- || !buildConfig[0].QT_FEATURES.QT_FEATURE_am_multi_process
+ || !AmTest.buildConfig[0].QT_FEATURES.QT_FEATURE_am_multi_process
property QtObject windowHandler: QtObject {
function windowAddedHandler(window) {
// console.info("window " + window + " added");