From 5ecb4da29804977c7620c7ef205b79a251587614 Mon Sep 17 00:00:00 2001 From: firewave Date: Fri, 16 Aug 2024 13:45:44 +0200 Subject: [PATCH] test/CMakeLists.txt: bumped CTest timeout to accommodate `macos-*` runner slowness --- test/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 76727209190..5e3a021d495 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -68,7 +68,8 @@ if (BUILD_TESTS) include(ProcessorCount) ProcessorCount(N) set(CTEST_PARALLEL_LEVEL ${N} CACHE STRING "CTest parallel level") - set(CTEST_TIMEOUT 90 CACHE STRING "CTest timeout") + # the macos-* runners are sporadically much slower than other runners so chose a high timeout + set(CTEST_TIMEOUT 130 CACHE STRING "CTest timeout") add_custom_target(check ${CMAKE_CTEST_COMMAND} --output-on-failure -j ${CTEST_PARALLEL_LEVEL} -C ${CMAKE_CFG_INTDIR} --timeout ${CTEST_TIMEOUT} DEPENDS testrunner cppcheck)