Do not print command invocation if QUIET

This commit is contained in:
Bernhard Reutner-Fischer 2018-01-29 19:54:48 +01:00
parent d82e34c3ee
commit 3101bc92b3

View File

@ -37,7 +37,7 @@ test: test_format test_dirs test_files test_seek test_truncate test_parallel \
test_alloc test_paths test_orphan test_move test_corrupt
test_%: tests/test_%.sh
ifdef QUIET
./$< | sed -n '/^[-=]/p'
@./$< | sed -n '/^[-=]/p'
else
./$<
endif