summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2024-02-13 10:15:57 +0100
committerDominik Holland <dominik.holland@qt.io>2024-02-14 15:27:44 +0100
commit149778935e844bbcb7c85752ca10bef3f4731889 (patch)
treeaa77e26362efb7a07f18b4cadf958584e7fe640b
parenteeb1db1bc7b7d7ce931f7d4faea2595858c4eda4 (diff)
Fix the broken test after the retirement of qt_parse_all_arguments
As we are now processing the arguments with cmake_parse_arguments(PARSE_ARGV, we don't need to pass the escape characters anymore. Task-number: QTBUG-99238 Pick-to: 6.7 6.6 6.5 Change-Id: I3d2d29792718320fdff205f194714c8f9f75101d Reviewed-by: Robert Griebl <robert.griebl@qt.io>
-rw-r--r--tests/auto/core/ifcodegen/simulation-behavior/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/core/ifcodegen/simulation-behavior/CMakeLists.txt b/tests/auto/core/ifcodegen/simulation-behavior/CMakeLists.txt
index c9f2c702..a8ccccd9 100644
--- a/tests/auto/core/ifcodegen/simulation-behavior/CMakeLists.txt
+++ b/tests/auto/core/ifcodegen/simulation-behavior/CMakeLists.txt
@@ -34,12 +34,12 @@ set_property(TARGET tst_simulation-behavior APPEND PROPERTY QT_QML_IMPORT_PATH
qt_internal_extend_target(tst_simulation-behavior CONDITION ANDROID OR IOS
DEFINES
- QT_QMLTEST_DATADIR=\\\":/data\\\"
+ QT_QMLTEST_DATADIR=":/data"
)
qt_internal_extend_target(tst_simulation-behavior CONDITION NOT ANDROID AND NOT IOS
DEFINES
- QT_QMLTEST_DATADIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/data\\\"
+ QT_QMLTEST_DATADIR="${CMAKE_CURRENT_SOURCE_DIR}/data"
)
# QT_ANDROID_EXTRA_PLUGINS requires a list of directories, not files!