Tests: Add RunCTest helper option to control CTest verbose flag

This commit is contained in:
Brad King
2021-04-06 12:42:41 -04:00
parent 4c5c0c5f5d
commit 80da23f2a2

View File

@@ -11,10 +11,13 @@ function(run_ctest CASE_NAME)
endif()
configure_file(${RunCMake_SOURCE_DIR}/CMakeLists.txt.in
${RunCMake_BINARY_DIR}/${CASE_NAME}/CMakeLists.txt @ONLY)
if(NOT DEFINED RunCTest_VERBOSE_FLAG)
set(RunCTest_VERBOSE_FLAG "-V")
endif()
run_cmake_command(${CASE_NAME} ${CMAKE_CTEST_COMMAND}
-C Debug
-S ${RunCMake_BINARY_DIR}/${CASE_NAME}/test.cmake
-V
${RunCTest_VERBOSE_FLAG}
--output-log ${RunCMake_BINARY_DIR}/${CASE_NAME}-build/testOutput.log
--no-compress-output
${ARGN}