From c24ad64d18e4a091c83b57a600d1fadeec3d8e84 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 16 Jul 2025 11:18:25 +1000 Subject: [PATCH] meson.build: drop the timeouts to fit into the CI's 60 min limit The vm tests had a 20 min timeout and a multiplier of 100. Our CI will kill us (without logs) after 60 minutes. Let's drop this to ~18min and a multiplier of 3 which gives us a few minutes for setup before the CI terminates us. Ideally this means we get some meson logs on timeout failures. Part-of: --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e5135788..f7f2660b 100644 --- a/meson.build +++ b/meson.build @@ -1044,7 +1044,7 @@ if get_option('tests') suite : ['all', 'valgrind', 'root', 'hardware'], args : ['--filter-group=@0@'.format(group)], is_parallel : false, - timeout : 1200) + timeout : 1100) endforeach test('libinput-test-deviceless', @@ -1064,7 +1064,7 @@ if get_option('tests') '--error-exitcode=3', '--suppressions=' + valgrind_suppressions_file ], env : valgrind_env, - timeout_multiplier : 100) + timeout_multiplier : 3) else message('valgrind not found, disabling valgrind test suite') endif