CMake: Fix indentation in _qt_internal_test_expect_pass

Change-Id: Ib92bcd600bbfb0f2ee8ad8e5d44eaecdf9d16916
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Alexandru Croitor 2021-08-23 11:37:20 +02:00
parent 5a437d2590
commit eb635dda1e

View File

@ -147,31 +147,31 @@ endfunction()
# BUILD_OPTIONS: a list of -D style CMake definitions to pass to ctest's --build-options (which # 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) # are ultimately passed to the CMake invocation of the test project)
macro(_qt_internal_test_expect_pass _dir) macro(_qt_internal_test_expect_pass _dir)
set(_test_option_args set(_test_option_args
SIMULATE_IN_SOURCE SIMULATE_IN_SOURCE
) )
set(_test_single_args set(_test_single_args
BINARY BINARY
TESTNAME TESTNAME
BUILD_DIR BUILD_DIR
) )
set(_test_multi_args set(_test_multi_args
BUILD_OPTIONS BUILD_OPTIONS
BINARY_ARGS BINARY_ARGS
) )
cmake_parse_arguments(_ARGS cmake_parse_arguments(_ARGS
"${_test_option_args}" "${_test_option_args}"
"${_test_single_args}" "${_test_single_args}"
"${_test_multi_args}" "${_test_multi_args}"
${ARGN} ${ARGN}
) )
if(_ARGS_TESTNAME) if(_ARGS_TESTNAME)
set(testname "${_ARGS_TESTNAME}") set(testname "${_ARGS_TESTNAME}")
else() else()
string(REPLACE "(" "_" testname "${_dir}") string(REPLACE "(" "_" testname "${_dir}")
string(REPLACE ")" "_" testname "${testname}") string(REPLACE ")" "_" testname "${testname}")
string(REPLACE "/" "_" testname "${testname}") string(REPLACE "/" "_" testname "${testname}")
endif() endif()
set(__expect_pass_prefixes "${CMAKE_PREFIX_PATH}") set(__expect_pass_prefixes "${CMAKE_PREFIX_PATH}")
string(REPLACE ";" "\;" __expect_pass_prefixes "${__expect_pass_prefixes}") string(REPLACE ";" "\;" __expect_pass_prefixes "${__expect_pass_prefixes}")