From dcd7ef7ae73f762078d3f29fce0faef248f8aedc Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Fri, 5 Jun 2026 11:14:39 +0200 Subject: [PATCH] fix: Double test TIMEOUT Some of the tests run way too slow on (emulated) ARM a57 to succeed in the 30 seconds we had previously. Fixes #130 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 96d5fe0..e2d81b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,7 +81,7 @@ foreach( script_path ${test_scripts} ) if( NOT "${CMAKE_BUILD_TYPE}" STREQUAL "asan" AND NOT "${CMAKE_BUILD_TYPE}" STREQUAL "tsan" ) add_test( NAME ${test_name} COMMAND ${Python_EXECUTABLE} ${script_path} WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/tests ) - set_tests_properties( ${test_name} PROPERTIES TIMEOUT 30 ) + set_tests_properties( ${test_name} PROPERTIES TIMEOUT 60 ) endif() endforeach( script_path )