[cfe-commits] r48462 - /cfe/trunk/test/Makefile.parallel
Gabor Greif
ggreif at gmail.com
Mon Mar 17 11:36:15 PDT 2008
Author: ggreif
Date: Mon Mar 17 13:36:14 2008
New Revision: 48462
URL: http://llvm.org/viewvc/llvm-project?rev=48462&view=rev
Log:
finishing touches: teminate the dots with a newline
Modified:
cfe/trunk/test/Makefile.parallel
Modified: cfe/trunk/test/Makefile.parallel
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Makefile.parallel?rev=48462&r1=48461&r2=48462&view=diff
==============================================================================
--- cfe/trunk/test/Makefile.parallel (original)
+++ cfe/trunk/test/Makefile.parallel Mon Mar 17 13:36:14 2008
@@ -11,9 +11,11 @@
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 @@
@ rm -f $(TESTS)
@ echo '--- Running clang tests ---'
@ $(MAKE) -f Makefile.parallel $(TESTS)
+ @ $(DONE)
report: $(TESTS)
@ cat $^
More information about the cfe-commits
mailing list