commit aea75960d785b1deb65e67a981767a598b7c6850 parent 2ee7df8404ec998b4c5a38bbca23743f78942b3b Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Fri, 10 Apr 2026 22:37:44 +0200 test: allow more time for tests to complete Diffstat:
| M | Makefile.in | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile.in b/Makefile.in @@ -31,15 +31,15 @@ doxygen: # Run tests .PHONY: check check: - $(MESON) test -C $(mesonbuilddir) --maxfail 1 + $(MESON) test -C $(mesonbuilddir) --maxfail 1 --timeout-multiplier 4 .PHONY: installcheck installcheck: - $(MESON) test -C $(mesonbuilddir) --suite=installcheck --maxfail 1 + $(MESON) test -C $(mesonbuilddir) --suite=installcheck --maxfail 1 --timeout-multiplier 4 .PHONY: integrationtests integrationtests: - $(MESON) test -C $(mesonbuilddir) --suite=integrationtests --maxfail 1 + $(MESON) test -C $(mesonbuilddir) --suite=integrationtests --maxfail 1 --timeout-multiplier 4 format: $(MESON) fmt -i -r .