aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-03-17 18:36:14 +0000
committerGabor Greif <ggreif@gmail.com>2008-03-17 18:36:14 +0000
commitb4992dbed352bce5e5c62d62e9a2d56a6e94f22f (patch)
treeeba630b29ff18c817eb6cc608d8e8273dc6580a9
parent9c167115e9089d46266ba2eacf79693b1ca1c036 (diff)
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
-rw-r--r--test/Makefile.parallel3
1 files changed, 3 insertions, 0 deletions
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 $^