|
|
@@ -24,12 +24,25 @@ run_cmake_command(repeat-until-fail-good
|
|
|
${CMAKE_CTEST_COMMAND} --repeat-until-fail 2
|
|
|
)
|
|
|
|
|
|
+run_cmake_command(repeat-after-timeout-bad1
|
|
|
+ ${CMAKE_CTEST_COMMAND} --repeat-after-timeout
|
|
|
+ )
|
|
|
+run_cmake_command(repeat-after-timeout-bad2
|
|
|
+ ${CMAKE_CTEST_COMMAND} --repeat-after-timeout foo
|
|
|
+ )
|
|
|
+run_cmake_command(repeat-after-timeout-good
|
|
|
+ ${CMAKE_CTEST_COMMAND} --repeat-after-timeout 2
|
|
|
+ )
|
|
|
+
|
|
|
run_cmake_command(repeat-until-pass-and-fail
|
|
|
${CMAKE_CTEST_COMMAND} --repeat-until-pass 2 --repeat-until-fail 2
|
|
|
)
|
|
|
run_cmake_command(repeat-until-fail-and-pass
|
|
|
${CMAKE_CTEST_COMMAND} --repeat-until-fail 2 --repeat-until-pass 2
|
|
|
)
|
|
|
+run_cmake_command(repeat-until-fail-and-timeout
|
|
|
+ ${CMAKE_CTEST_COMMAND} --repeat-until-fail 2 --repeat-after-timeout 2
|
|
|
+ )
|
|
|
|
|
|
function(run_repeat_until_pass_tests)
|
|
|
# Use a single build tree for a few tests without cleaning.
|
|
|
@@ -42,6 +55,17 @@ function(run_repeat_until_pass_tests)
|
|
|
endfunction()
|
|
|
run_repeat_until_pass_tests()
|
|
|
|
|
|
+function(run_repeat_after_timeout_tests)
|
|
|
+ # Use a single build tree for a few tests without cleaning.
|
|
|
+ set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/repeat-after-timeout-build)
|
|
|
+ run_cmake(repeat-after-timeout-cmake)
|
|
|
+ set(RunCMake_TEST_NO_CLEAN 1)
|
|
|
+ run_cmake_command(repeat-after-timeout-ctest
|
|
|
+ ${CMAKE_CTEST_COMMAND} -C Debug --repeat-after-timeout 3
|
|
|
+ )
|
|
|
+endfunction()
|
|
|
+run_repeat_after_timeout_tests()
|
|
|
+
|
|
|
function(run_repeat_until_fail_tests)
|
|
|
# Use a single build tree for a few tests without cleaning.
|
|
|
set(RunCMake_TEST_BINARY_DIR ${RunCMake_BINARY_DIR}/repeat-until-fail-build)
|