aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Raghavan <arun@arunraghavan.net>2019-08-17 16:12:37 +0530
committerArun Raghavan <arun@arunraghavan.net>2019-08-17 16:14:45 +0530
commita7caa9d393a3a71b355527c14e655d8e07b9a5b0 (patch)
treeb06ac33540e3c165c292b93dda0c5407b44b94fc
parent2e7c0ee8f802bf5fbd457bd73c28816d54c29c7d (diff)
downloadpulseaudio-a7caa9d393a3a71b355527c14e655d8e07b9a5b0.tar.gz
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.
-rw-r--r--src/tests/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/meson.build b/src/tests/meson.build
index d68fbd0e..621c2c96 100644
--- a/src/tests/meson.build
+++ b/src/tests/meson.build
@@ -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