From ef248256a67054b872444c3f20af33547bb23843 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 20 Mar 2022 14:13:36 +0200 Subject: [PATCH] Makefile.meson: add test-verbose target --- Makefile.meson | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.meson b/Makefile.meson index 13d01354..cb23643f 100644 --- a/Makefile.meson +++ b/Makefile.meson @@ -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