From 52a55917d94f61ecaa7cd1170d72a6857a8b2cd9 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Fri, 19 Dec 2025 09:35:16 +0100 Subject: [PATCH] tests: extend testatomic timeout to 120 seconds The default (i.e. 10 seconds) is not enough for slower architectures, such as alpha or hppa. Raise it to 120 seconds according to the feedback of hppa porters: https://bugs.debian.org/1095774 --- test/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 7cabbc3603..ee3e6dce41 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -504,6 +504,7 @@ foreach(TESTCASE ${SDL_TESTS_NONINTERACTIVE}) endif() endforeach() +set_tests_properties(testatomic PROPERTIES TIMEOUT 120) set_tests_properties(testautomation PROPERTIES TIMEOUT 120) set_tests_properties(testthread PROPERTIES TIMEOUT 40) set_tests_properties(testtimer PROPERTIES TIMEOUT 60)