diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-11-23 21:51:24 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-11-28 11:33:18 -0500 |
commit | 604ec9f5cb041672efbe6355cd8c43dc691732e2 (patch) | |
tree | 118717003ce767e0305eb3ffefe9e9606bc63058 /Makefile | |
parent | 37d09c15401e0e4d2a836b8cce9659d4f11b2104 (diff) | |
download | bfs-604ec9f5cb041672efbe6355cd8c43dc691732e2.tar.xz |
Makefile: Run tests with --verbose during distcheck
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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)),) |