tests: increase timeout to 120 seconds
authorJeremy Bicha <jbicha@debian.org>
Sun, 27 Oct 2019 16:53:09 +0000 (12:53 -0400)
committerJordi Mallach <jordi@debian.org>
Mon, 4 Nov 2024 23:09:31 +0000 (00:09 +0100)
meson's default test timeout is 30 seconds which is a bit too slow
for Debian's armel build machine.

https://mesonbuild.com/Reference-manual.html#test
https://buildd.debian.org/status/logs.php?pkg=babl&arch=armel

Gbp-Pq: Name tests-increase-timeout.patch

tests/meson.build

index fd09fb9aec0fd4077d052d37a5ab4f9fe0ebee50..3905981e76a4b0efacf5a415d224bad5ad665586 100644 (file)
@@ -51,5 +51,6 @@ foreach test_name : test_names
     test,
     env: test_env,
     workdir: meson.current_build_dir(),
+    timeout: 120,
   )
 endforeach