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

Chris Lattner lattner at cs.uiuc.edu
Sun Jun 22 15:22:01 PDT 2003


Changes in directory llvm/test/Programs:

Makefile.programs updated: 1.59 -> 1.60

---
Log message:

Maybe this will at least cause the OOM failure to not kill the tester


---
Diffs of the changes:

Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.59 llvm/test/Programs/Makefile.programs:1.60
--- llvm/test/Programs/Makefile.programs:1.59	Fri Jun 20 14:00:42 2003
+++ llvm/test/Programs/Makefile.programs	Sun Jun 22 15:21:29 2003
@@ -305,19 +305,19 @@
 
 $(PROGRAMS_TO_TEST:%=Output/%.diff-lli): \
 Output/%.diff-lli: Output/%.out-nat Output/%.out-lli
-	$(DIFFPROG) lli $*  $(HIDEDIFF)
+	-$(DIFFPROG) lli $*  $(HIDEDIFF)
 
 $(PROGRAMS_TO_TEST:%=Output/%.diff-jit): \
 Output/%.diff-jit: Output/%.out-nat Output/%.out-jit
-	$(DIFFPROG) jit $* $(HIDEDIFF)
+	-$(DIFFPROG) jit $* $(HIDEDIFF)
 
 $(PROGRAMS_TO_TEST:%=Output/%.diff-llc): \
 Output/%.diff-llc: Output/%.out-nat Output/%.out-llc
-	$(DIFFPROG) llc $* $(HIDEDIFF)
+	-$(DIFFPROG) llc $* $(HIDEDIFF)
 
 $(PROGRAMS_TO_TEST:%=Output/%.diff-cbe): \
 Output/%.diff-cbe: Output/%.out-nat Output/%.out-cbe
-	$(DIFFPROG) cbe $* $(HIDEDIFF)
+	-$(DIFFPROG) cbe $* $(HIDEDIFF)
 
 ifndef DISABLE_DIFFS
 $(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \





More information about the llvm-commits mailing list