Added QUIET flag to tests so CI is readable

This commit is contained in:
Christopher Haster
2017-11-16 17:54:44 -06:00
parent f9f4f5ccec
commit 78c79ecb9e
2 changed files with 10 additions and 6 deletions

View File

@@ -34,7 +34,11 @@ size: $(OBJ)
test: test_format test_dirs test_files test_seek test_parallel \
test_alloc test_paths test_orphan test_move test_corrupt
test_%: tests/test_%.sh
ifdef QUIET
./$< | sed '/^[^-=]/d'
else
./$<
endif
-include $(DEP)