Skip to content

Commit 5ecb4da

Browse files
committed
test/CMakeLists.txt: bumped CTest timeout to accommodate macos-* runner slowness
1 parent 601156b commit 5ecb4da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ if (BUILD_TESTS)
6868
include(ProcessorCount)
6969
ProcessorCount(N)
7070
set(CTEST_PARALLEL_LEVEL ${N} CACHE STRING "CTest parallel level")
71-
set(CTEST_TIMEOUT 90 CACHE STRING "CTest timeout")
71+
# the macos-* runners are sporadically much slower than other runners so chose a high timeout
72+
set(CTEST_TIMEOUT 130 CACHE STRING "CTest timeout")
7273
add_custom_target(check ${CMAKE_CTEST_COMMAND} --output-on-failure -j ${CTEST_PARALLEL_LEVEL} -C ${CMAKE_CFG_INTDIR} --timeout ${CTEST_TIMEOUT}
7374
DEPENDS testrunner cppcheck)
7475

0 commit comments

Comments
 (0)