Makefile.meson: increase timeout for 'test-valgrind'

This commit is contained in:
Dirk-Jan C. Binnema 2022-04-09 19:17:49 +03:00
parent 43c71c7698
commit 4a4fec28b4
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ test-verbose-if-fail: all
@cd $(BUILDDIR); $(MESON) test || $(MESON) test --verbose @cd $(BUILDDIR); $(MESON) test || $(MESON) test --verbose
test-valgrind: $(BUILDDIR) 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) test-helgrind: $(BUILDDIR)
@cd $(BUILDDIR); $(MESON) test --wrap='valgrind --tool=helgrind --error-exitcode=1' @cd $(BUILDDIR); $(MESON) test --wrap='valgrind --tool=helgrind --error-exitcode=1'