meson: Centralize test timeout values

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie
2018-11-01 09:49:43 +00:00
committed by Simon McVittie
parent 985210849c
commit a11ff3755a
7 changed files with 8 additions and 6 deletions

View File

@@ -484,7 +484,7 @@ foreach test_dict : gio_tests
)
suite = ['gio'] + extra_args.get('suite', [])
timeout = suite.contains('slow') ? 120 : 30
timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
test(test_name, exe,
env : test_env,
timeout : timeout,