[llvm-commits] CVS: llvm/test/Makefile

John Criswell criswell at cs.uiuc.edu
Thu Oct 23 09:13:12 PDT 2003


Changes in directory llvm/test:

Makefile updated: 1.46 -> 1.47

---
Log message:

Do not report errors if QMTest returns a non-zero value.



---
Diffs of the changes:  (+2 -2)

Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.46 llvm/test/Makefile:1.47
--- llvm/test/Makefile:1.46	Fri Oct 10 19:10:05 2003
+++ llvm/test/Makefile	Thu Oct 23 09:11:53 2003
@@ -42,10 +42,10 @@
 # Execute the tests
 #
 qmtest:: $(LLVM_OBJ_ROOT)/test/tmp register
-	$(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTest/expectations.qmr $(CONTEXT)
+	-$(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTest/expectations.qmr $(CONTEXT)
 
 %.t:: $(LLVM_OBJ_ROOT)/test/tmp register
-	$(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTest/expectations.qmr $(CONTEXT) $*
+	-$(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTest/expectations.qmr $(CONTEXT) $*
 
 #
 # Create the temporary directory used by the test suite.





More information about the llvm-commits mailing list