From: Gabor Greif Date: Mon, 17 Mar 2008 18:36:14 +0000 (+0000) Subject: finishing touches: teminate the dots with a newline X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b4992dbed352bce5e5c62d62e9a2d56a6e94f22f;p=clang finishing touches: teminate the dots with a newline git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48462 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Makefile.parallel b/test/Makefile.parallel index 710fb4cce2..adb3cf35d1 100644 --- a/test/Makefile.parallel +++ b/test/Makefile.parallel @@ -11,9 +11,11 @@ endif ifdef VERBOSE PROGRESS = echo $< REPORTFAIL = cat $@ +DONE = true else PROGRESS = printf '.' REPORTFAIL = (echo; echo '----' $< 'failed ----') +DONE = echo endif TESTS = $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \)))) @@ -26,6 +28,7 @@ all:: @ rm -f $(TESTS) @ echo '--- Running clang tests ---' @ $(MAKE) -f Makefile.parallel $(TESTS) + @ $(DONE) report: $(TESTS) @ cat $^