summaryrefslogtreecommitdiffstats
path: root/src/corelib/Qt6CTestMacros.cmake
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-24 21:24:43 +0200
commiteb635dda1e19135a635b03a05c7582d1ec976c22 (patch)
tree4fc5b82d38655723de72ce5b67dbb25a5342c3bb /src/corelib/Qt6CTestMacros.cmake
parent5a437d2590765a80236efad82e79654ebb3b4469 (diff)
CMake: Fix indentation in _qt_internal_test_expect_pass
Change-Id: Ib92bcd600bbfb0f2ee8ad8e5d44eaecdf9d16916 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/corelib/Qt6CTestMacros.cmake')
-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}")