Makefile.meson: add test-verbose target

This commit is contained in:
Dirk-Jan C. Binnema
2022-03-20 14:13:36 +02:00
parent f7c84006d7
commit ef248256a6

View File

@ -36,7 +36,10 @@ $(BUILDDIR):
check: test check: test
test: all test: all
@cd $(BUILDDIR); $(MESON) test $(MESON) test -C $(BUILDDIR)
test-verbose: all
$(MESON) test --verbose -C $(BUILDDIR)
test-verbose-if-fail: all test-verbose-if-fail: all
@cd $(BUILDDIR); $(MESON) test || $(MESON) test --verbose @cd $(BUILDDIR); $(MESON) test || $(MESON) test --verbose