Automate with: find Tests -type f -print0 | xargs -0 perl -i -0pe \ 's/set\(([a-zA-Z0-9_]+)(\s+)"\$\{\1\}([^"])/string(APPEND \1\2"\3/g'
38 lines
1.0 KiB
CMake
38 lines
1.0 KiB
CMake
if(EXISTS ${RunCMake_TEST_BINARY_DIR}/check-debug.cmake)
|
|
include(${RunCMake_TEST_BINARY_DIR}/check-debug.cmake)
|
|
if(RunCMake_TEST_FAILED)
|
|
return()
|
|
endif()
|
|
foreach(exe IN LISTS check_exes)
|
|
execute_process(COMMAND ${exe} RESULT_VARIABLE res)
|
|
if(NOT res EQUAL ${check_step})
|
|
string(APPEND RunCMake_TEST_FAILED "
|
|
'${exe}' returned '${res}' but expected '${check_step}'
|
|
")
|
|
endif()
|
|
endforeach()
|
|
foreach(p IN LISTS check_pairs)
|
|
if("${p}" MATCHES "^(.*)\\|(.*)$")
|
|
set(lhs "${CMAKE_MATCH_1}")
|
|
set(rhs "${CMAKE_MATCH_2}")
|
|
if(NOT EXISTS "${lhs}")
|
|
string(APPEND RunCMake_TEST_FAILED "
|
|
'${lhs}' missing
|
|
")
|
|
elseif(NOT EXISTS "${rhs}")
|
|
string(APPEND RunCMake_TEST_FAILED "
|
|
'${rhs}' missing
|
|
")
|
|
elseif(NOT "${lhs}" IS_NEWER_THAN "${rhs}")
|
|
string(APPEND RunCMake_TEST_FAILED "
|
|
'${lhs}' is not newer than '${rhs}'
|
|
")
|
|
endif()
|
|
endif()
|
|
endforeach()
|
|
else()
|
|
set(RunCMake_TEST_FAILED "
|
|
'${RunCMake_TEST_BINARY_DIR}/check-debug.cmake' missing
|
|
")
|
|
endif()
|