commit bada8790064e2fbe7ccc8d32b9b649144d9a6c27 parent fc82b172a798874a1f688898f54d9c0676b529c5 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Fri, 10 Apr 2026 20:22:12 +0200 tests: exit on failure 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) + $(MESON) test -C $(mesonbuilddir) --maxfail 1 .PHONY: installcheck installcheck: - $(MESON) test -C $(mesonbuilddir) --suite=installcheck + $(MESON) test -C $(mesonbuilddir) --suite=installcheck --maxfail 1 .PHONY: integrationtests integrationtests: - $(MESON) test -C $(mesonbuilddir) --suite=integrationtests + $(MESON) test -C $(mesonbuilddir) --suite=integrationtests --maxfail 1 format: $(MESON) fmt -i -r .