From 0e1cfdc52387bf0ec5b7d417b9893941304f8fa9 Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Wed, 16 Jan 2019 15:40:31 +0700 Subject: [PATCH] meson: Increase timeout for tests This solves numerous timeout failures Signed-off-by: Arnaud Rebillout --- src/tests/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/meson.build b/src/tests/meson.build index b995b5c3f..b18d32ef8 100644 --- a/src/tests/meson.build +++ b/src/tests/meson.build @@ -191,7 +191,8 @@ foreach t : default_tests + norun_tests ) test(name, exe, - env : test_env + env : test_env, + timeout : 120, ) endforeach