]> granicus.if.org Git - clang/commitdiff
finishing touches: teminate the dots with a newline
authorGabor Greif <ggreif@gmail.com>
Mon, 17 Mar 2008 18:36:14 +0000 (18:36 +0000)
committerGabor Greif <ggreif@gmail.com>
Mon, 17 Mar 2008 18:36:14 +0000 (18:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48462 91177308-0d34-0410-b5e6-96231b3b80d8

test/Makefile.parallel

index 710fb4cce2192c7f6ca9a4cd917db5f5d66b8a61..adb3cf35d13365e60d8012ebaa0d98b3e5f6a79e 100644 (file)
@@ -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 $^