diff options
author | Gabor Greif <ggreif@gmail.com> | 2008-03-15 08:11:35 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2008-03-15 08:11:35 +0000 |
commit | 8fb64e8d7d8eea9a01813d08fa489c0e50f07e7e (patch) | |
tree | 11e2b7b554ea32715c9223d23454ace23a1d2db8 | |
parent | d9d1cbfe72aa206d23041b76fb10841ed462c2f5 (diff) |
implement a bit of feedback: print dots
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48394 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile.parallel | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/Makefile.parallel b/test/Makefile.parallel index 35bea3a5a0..8162f816e7 100644 --- a/test/Makefile.parallel +++ b/test/Makefile.parallel @@ -13,8 +13,8 @@ endif Makefile.tests: @ echo '%.testresults: %' > $@ - @ echo "^@ echo $$<" | tr "^" "\t" >> $@ - @ echo "^@ PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts ./TestRunner.sh &< > &@" | tr "^&" '\t$$' >> $@ + @ echo "^@ printf '.'" | tr "^" "\t" >> $@ + @ echo "^@ PATH=$$PATH:$(ToolDir):$(LLVM_SRC_ROOT)/test/Scripts ./TestRunner.sh &< > &@ || echo $$^" | tr "^&" '\t$$' >> $@ @ echo >> $@ @ echo "TESTS =" \\ >> $@ @ find $(TESTDIRS) \ @@ -32,11 +32,6 @@ Makefile.tests: @ echo >> $@ @ echo ".PHONY: all report clean" >> $@ - -# find $(TESTDIRS) \ -# \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \) \ -# | $(AWK) '{print ".PHONY:", $$0 ".testresults"}' >> $@ - all:: Makefile.tests @ $(MAKE) -f $< clean @ $(MAKE) -f $< all report |