summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAmir Masoud Abdol <amirmasoudabdol@icloud.com>2023-01-19 18:12:11 +0100
committerAmir Masoud Abdol <amirmasoudabdol@icloud.com>2023-01-21 11:51:06 +0100
commit1158d32492d5f9270e41fd9cd7540ea44f10420c (patch)
tree3ff2e207edab68067c2ffca442c8a3abecb1a1ef /tests
parentb2e43a64a73a50a3aef85b9b361f44745e2677f7 (diff)
downloadqtqa-1158d32492d5f9270e41fd9cd7540ea44f10420c.tar.gz
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 Change-Id: Ibce14207d73442eb35bb687be6864df094ef3645 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/postbuild/bic/CMakeLists.txt2
-rw-r--r--tests/postbuild/guiapplauncher/CMakeLists.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/postbuild/bic/CMakeLists.txt b/tests/postbuild/bic/CMakeLists.txt
index 8bef741..2734ef1 100644
--- a/tests/postbuild/bic/CMakeLists.txt
+++ b/tests/postbuild/bic/CMakeLists.txt
@@ -35,7 +35,7 @@ qt_internal_add_test(tst_bic
qbic.cpp qbic.h
tst_bic.cpp
DEFINES
- SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
+ SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}/"
INCLUDE_DIRECTORIES
..
)
diff --git a/tests/postbuild/guiapplauncher/CMakeLists.txt b/tests/postbuild/guiapplauncher/CMakeLists.txt
index 0f48533..4eeb50b 100644
--- a/tests/postbuild/guiapplauncher/CMakeLists.txt
+++ b/tests/postbuild/guiapplauncher/CMakeLists.txt
@@ -12,7 +12,7 @@ qt_internal_add_test(tst_guiapplauncher
tst_guiapplauncher.cpp
windowmanager.cpp windowmanager.h
DEFINES
- SRCDIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/\\\"
+ SRCDIR="${CMAKE_CURRENT_SOURCE_DIR}/"
LIBRARIES
Qt::Gui
)