From d250945faf7921a40b1ea0cff38bd7cf8d93a982 Mon Sep 17 00:00:00 2001 From: Florian Schmaus <flow@cs.fau.de> Date: Mon, 11 Jan 2021 17:09:41 +0100 Subject: [PATCH] [tests] Increase test timeout from 60 seconds to 180 seconds We see SimpleActorTest timing out a lot in our CI, and from the logs it appears likely that this is a valid timeout (versus the test just being stuck). Let us increase the test timeout and see if it helps. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index d0ffdced..32e83633 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -98,7 +98,7 @@ foreach source, test_dict : tests test_exe, is_parallel: test_dict.get('is_parallel', false), suite: test_dict.get('test_suite', 'all'), - timeout: 60, + timeout: 180, env: test_env, ) endforeach -- GitLab