summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2021-08-23 11:37:20 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2021-08-27 01:36:00 +0200
commite16d857494348e49c51e29082ddae3557286823f (patch)
treeee2efa8430119c8e52edf5a095d7428c45db0242
parent46008e15e289f885088d638d2e746344d56f7c7e (diff)
CMake: Fix indentation in _qt_internal_test_expect_pass
Change-Id: Ib92bcd600bbfb0f2ee8ad8e5d44eaecdf9d16916 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> (cherry picked from commit eb635dda1e19135a635b03a05c7582d1ec976c22) Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
-rw-r--r--src/corelib/Qt6CTestMacros.cmake22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/corelib/Qt6CTestMacros.cmake b/src/corelib/Qt6CTestMacros.cmake
index 13d794024a..ada71d0b40 100644
--- a/src/corelib/Qt6CTestMacros.cmake
+++ b/src/corelib/Qt6CTestMacros.cmake
@@ -147,31 +147,31 @@ endfunction()
# BUILD_OPTIONS: a list of -D style CMake definitions to pass to ctest's --build-options (which
# are ultimately passed to the CMake invocation of the test project)
macro(_qt_internal_test_expect_pass _dir)
- set(_test_option_args
+ set(_test_option_args
SIMULATE_IN_SOURCE
- )
- set(_test_single_args
+ )
+ set(_test_single_args
BINARY
TESTNAME
BUILD_DIR
- )
- set(_test_multi_args
+ )
+ set(_test_multi_args
BUILD_OPTIONS
BINARY_ARGS
- )
- cmake_parse_arguments(_ARGS
+ )
+ cmake_parse_arguments(_ARGS
"${_test_option_args}"
"${_test_single_args}"
"${_test_multi_args}"
${ARGN}
- )
- if(_ARGS_TESTNAME)
+ )
+ if(_ARGS_TESTNAME)
set(testname "${_ARGS_TESTNAME}")
- else()
+ else()
string(REPLACE "(" "_" testname "${_dir}")
string(REPLACE ")" "_" testname "${testname}")
string(REPLACE "/" "_" testname "${testname}")
- endif()
+ endif()
set(__expect_pass_prefixes "${CMAKE_PREFIX_PATH}")
string(REPLACE ";" "\;" __expect_pass_prefixes "${__expect_pass_prefixes}")