19d1a5599a
This suppresses all non-error messages that would have otherwise been printed by this function.
11 lines
213 B
CMake
11 lines
213 B
CMake
include(RunCTest)
|
|
|
|
set(CASE_CTEST_START_ARGS "")
|
|
|
|
function(run_ctest_start CASE_NAME)
|
|
set(CASE_CTEST_START_ARGS "${ARGN}")
|
|
run_ctest(${CASE_NAME})
|
|
endfunction()
|
|
|
|
run_ctest_start(StartQuiet Experimental QUIET)
|