build-sys: meson: Give ourselves a little more timeout headroom
authorArun Raghavan <arun@arunraghavan.net>
Sat, 17 Aug 2019 10:42:37 +0000 (16:12 +0530)
committerArun Raghavan <arun@arunraghavan.net>
Sat, 17 Aug 2019 10:44:45 +0000 (16:14 +0530)
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.

src/tests/meson.build

index d68fbd0..621c2c9 100644 (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