From a49c5e9ec814010f483c41b8994b46acdbf2ffee Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Wed, 5 Jan 2022 14:55:40 -0700 Subject: [PATCH] tests: Bump slow test timeout to 600 seconds On our CI and package builders `test-update-install-flatpaks` often exceeds the 360 second timeout. Even on my fast laptop it routinely takes nearly 300 seconds. Bump the timeout for slow tests to 600 seconds to ensure it has time to complete. https://phabricator.endlessm.com/T5658 --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index da3beeaba..6e5083f51 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -106,7 +106,7 @@ foreach test_name, extra_args : test_programs exe, env: envs, suite: ['eos-updater'] + extra_args.get('suite', []), - timeout: extra_args.get('slow', false) ? 360 : 60, + timeout: extra_args.get('slow', false) ? 600 : 60, is_parallel: extra_args.get('parallel', true), ) endforeach