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.
This commit is contained in:
Thibault Saunier 2016-09-09 09:36:40 -03:00
parent c1bd6677c6
commit 006add672e

View file

@ -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