From 4a4fec28b4fc1ffa13172d126eb5f0cd35d048cc Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 9 Apr 2022 19:17:49 +0300 Subject: [PATCH] Makefile.meson: increase timeout for 'test-valgrind' --- Makefile.meson | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.meson b/Makefile.meson index cb23643f..5bb913d1 100644 --- a/Makefile.meson +++ b/Makefile.meson @@ -45,7 +45,9 @@ test-verbose-if-fail: all @cd $(BUILDDIR); $(MESON) test || $(MESON) test --verbose test-valgrind: $(BUILDDIR) - @cd $(BUILDDIR); $(MESON) test --wrap='valgrind --leak-check=full --error-exitcode=1' + @cd $(BUILDDIR); $(MESON) test \ + --wrap='valgrind --leak-check=full --error-exitcode=1' \ + --timeout-multiplier 100 test-helgrind: $(BUILDDIR) @cd $(BUILDDIR); $(MESON) test --wrap='valgrind --tool=helgrind --error-exitcode=1'