[llvm-commits] CVS: llvm/test/Programs/TEST.micro.Makefile

Chris Lattner lattner at cs.uiuc.edu
Mon Sep 29 10:40:02 PDT 2003


Changes in directory llvm/test/Programs:

TEST.micro.Makefile updated: 1.2 -> 1.3

---
Log message:

Do not kill the report if a program doesn't JIT correctly


---
Diffs of the changes:

Index: llvm/test/Programs/TEST.micro.Makefile
diff -u llvm/test/Programs/TEST.micro.Makefile:1.2 llvm/test/Programs/TEST.micro.Makefile:1.3
--- llvm/test/Programs/TEST.micro.Makefile:1.2	Sun Jun 22 15:11:18 2003
+++ llvm/test/Programs/TEST.micro.Makefile	Mon Sep 29 10:39:48 2003
@@ -14,7 +14,7 @@
 $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \
 Output/%.$(TEST).report.txt: Output/%.llvm.bc Output/%.LOC.txt Output/%.out-nat Output/%.out-jit $(LLI) $(LOPT)
 	@echo -n "LOC: " > $@
-	@cat Output/$*.LOC.txt >> $@
+	- at cat Output/$*.LOC.txt >> $@
 	@echo -n "LLC SIZE: " >> $@
 	#- at wc -c Output/$*.llc >> $@
 	@echo >> $@
@@ -22,7 +22,7 @@
 	- at grep real Output/$*.out-nat.time >> $@
 	@echo -n "JIT TIME: " >> $@
 	- at grep real Output/$*.out-jit.time >> $@
-	@cat Output/$*.out-jit.info >> $@
+	- at cat Output/$*.out-jit.info >> $@
 	$(LOPT) -strip -stats -o /dev/null -f $< >> $@ 2>&1
 
 $(PROGRAMS_TO_TEST:%=test.$(TEST).%): \





More information about the llvm-commits mailing list