summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@osg.samsung.com>2016-09-07 17:02:23 -0300
committerThibault Saunier <thibault.saunier@osg.samsung.com>2016-09-09 08:57:11 -0300
commit81ccca75387961bece303dbef2d89ee6061d02d2 (patch)
treefa2cf128ef7eec711b7a8adcff0c0962907f3e72 /tests
parentafaa3f1380da608f015f2f755283f22552375708 (diff)
meson: Raise test timeout to 3 minutes
The videoscale testsuite (with 50 tests) last almost 2 minutes here
Diffstat (limited to 'tests')
-rw-r--r--tests/check/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/check/meson.build b/tests/check/meson.build
index c7527d2e0..1fa963d28 100644
--- a/tests/check/meson.build
+++ b/tests/check/meson.build
@@ -125,7 +125,8 @@ foreach t : base_tests
dependencies : [libm] + test_deps + extra_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