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
1 changed files with 4 additions and 1 deletions

View File

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