Add tests-increase-timeout.patch:
authorJeremy Bicha <jbicha@debian.org>
Sun, 27 Oct 2019 16:54:09 +0000 (12:54 -0400)
committerJeremy Bicha <jbicha@debian.org>
Sun, 27 Oct 2019 16:55:34 +0000 (12:55 -0400)
- Increase meson timeout limit so that the armel build succeeds

Gbp-Dch: Full

debian/patches/series
debian/patches/tests-increase-timeout.patch [new file with mode: 0644]

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..b805e74c04313d6051e5307e4eec332e01485023 100644 (file)
@@ -0,0 +1 @@
+tests-increase-timeout.patch
diff --git a/debian/patches/tests-increase-timeout.patch b/debian/patches/tests-increase-timeout.patch
new file mode 100644 (file)
index 0000000..fa29ce1
--- /dev/null
@@ -0,0 +1,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