build-sys: meson: Give ourselves a little more timeout headroom

We're seeing CI failures due to once-test sometimes taking long. Let's
give ourselves a little more space per test (2 min -> 5 min) to avoid
this.
This commit is contained in:
Arun Raghavan 2019-08-17 16:12:37 +05:30
parent 2e7c0ee8f8
commit a7caa9d393

View file

@ -193,7 +193,7 @@ foreach t : default_tests + norun_tests
if default_tests.contains(t)
test(name, exe,
env : test_env,
timeout : 120,
timeout : 300,
)
endif
endforeach