From 006add672ef56d07c2c9460018ad98bf1de51cc9 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 9 Sep 2016 09:36:40 -0300 Subject: [PATCH] meson:tests: Bump timeout to 3 minutes Basically we already have each test with a 20sec timeout, and testsuite can last more than the default 30secs from meson. 3 minutes is another arbitrary timeout but should be good enough. --- tests/check/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index 9de9010250..06d3fd6381 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -139,7 +139,8 @@ foreach t : core_tests dependencies : glib_deps + gst_deps, ) test(test_name, exe, - env: test_env + ['GST_REGISTRY=@0@/@1@.registry'.format(meson.current_build_dir(), test_name)] + env: test_env + ['GST_REGISTRY=@0@/@1@.registry'.format(meson.current_build_dir(), test_name)], + timeout : 3 * 60 ) endif endforeach