summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-11-23 21:51:24 -0500
committerTavian Barnes <tavianator@tavianator.com>2020-11-28 11:33:18 -0500
commit604ec9f5cb041672efbe6355cd8c43dc691732e2 (patch)
tree118717003ce767e0305eb3ffefe9e9606bc63058 /Makefile
parent37d09c15401e0e4d2a836b8cce9659d4f11b2104 (diff)
downloadbfs-604ec9f5cb041672efbe6355cd8c43dc691732e2.tar.xz
Makefile: Run tests with --verbose during distcheck
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a0fb535..b71ca26 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,9 @@ LOCAL_LDLIBS += -lacl -lcap -lattr -lrt
# These libraries are not built with msan, so disable them
MSAN_CFLAGS += -DBFS_HAS_SYS_ACL=0 -DBFS_HAS_SYS_CAPABILITY=0 -DBFS_HAS_SYS_XATTR=0
-DISTCHECK_FLAGS := TEST_FLAGS="--all --sudo"
+DISTCHECK_FLAGS := TEST_FLAGS="--verbose --all --sudo"
+else
+DISTCHECK_FLAGS := TEST_FLAGS="--verbose"
endif
ifneq ($(filter asan,$(MAKECMDGOALS)),)