From 0c79c912e10a9834c1f0b7d322547a6bb40054a1 Mon Sep 17 00:00:00 2001 From: Gianfranco Costamagna Date: Sat, 4 Jul 2020 10:39:46 +0200 Subject: [PATCH] Update meson.build, increase test timeout (#361) This allows slow architectures such as emulated riscv64 in Ubuntu to successfully finish the build process. https://launchpad.net/ubuntu/+source/zimlib/6.1.3-4ubuntu2 also, please have a look at: https://bugs.debian.org/964196 containing more details on the issue Origin: https://github.com/openzim/libzim/commit/27182c3ed2cc5431ecf5baf405d8f9d512e8c2c0 Gbp-Pq: Name 0001-Update-meson.build-increase-test-timeout-361.patch --- test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index d77222f..e6d014d 100644 --- a/test/meson.build +++ b/test/meson.build @@ -23,7 +23,7 @@ if gtest_dep.found() and not meson.is_cross_build() link_args: extra_link_args, dependencies : deps + [gtest_dep], build_rpath : '$ORIGIN') - test(test_name, test_exe, timeout : 60) + test(test_name, test_exe, timeout : 120) endforeach endif -- 2.30.2