File: tests-increase-timeout.patch

package info (click to toggle)
babl 1%3A0.1.82-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,180 kB
  • sloc: ansic: 43,616; python: 106; ruby: 90; sh: 55; makefile: 14
file content (24 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Jeremy Bicha <jbicha@debian.org>
Date: Sun, 27 Oct 2019 12:53:09 -0400
Subject: tests: increase timeout to 120 seconds

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
---
 tests/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/meson.build b/tests/meson.build
index dfe7d45..c03e1a4 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -50,5 +50,6 @@ foreach test_name : test_names
     test,
     env: test_env,
     workdir: meson.current_build_dir(),
+    timeout: 120,
   )
 endforeach