diff options
-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 |