You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
include(RunCTest)
|
|
|
|
set(CASE_CTEST_BUILD_ARGS "")
|
|
|
|
function(run_ctest_build CASE_NAME)
|
|
set(CASE_CTEST_BUILD_ARGS "${ARGN}")
|
|
run_ctest(${CASE_NAME})
|
|
endfunction()
|
|
|
|
run_ctest_build(BuildQuiet QUIET)
|
|
|
|
function(run_BuildFailure)
|
|
set(CASE_CMAKELISTS_SUFFIX_CODE [[
|
|
add_custom_target(BuildFailure ALL COMMAND command-does-not-exist)
|
|
]])
|
|
set(CASE_CMAKELISTS_PREFIX_CODE [[
|
|
if(NOT CTEST_USE_LAUNCHERS)
|
|
message(FATAL_ERROR "CTEST_USE_LAUNCHERS not set")
|
|
endif()
|
|
]])
|
|
set(CASE_TEST_PREFIX_CODE [[
|
|
cmake_policy(SET CMP0061 NEW)
|
|
]])
|
|
set(CASE_TEST_SUFFIX_CODE [[
|
|
if (ctest_build_return_value)
|
|
message("ctest_build returned non-zero")
|
|
else()
|
|
message("ctest_build returned zero")
|
|
endif()
|
|
]])
|
|
run_ctest(BuildFailure)
|
|
|
|
if (RunCMake_GENERATOR MATCHES "Makefiles")
|
|
set(CASE_TEST_PREFIX_CODE "")
|
|
run_ctest(BuildFailure-CMP0061-OLD)
|
|
endif()
|
|
endfunction()
|
|
run_BuildFailure()
|
|
|
|
function(run_BuildChangeId)
|
|
set(CASE_TEST_PREFIX_CODE [[
|
|
set(CTEST_CHANGE_ID "<>1")
|
|
]])
|
|
|
|
run_ctest(BuildChangeId)
|
|
endfunction()
|
|
run_BuildChangeId()
|