summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-23 14:11:53 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-23 14:11:53 +0000
commitc82fb1520e848c93a11364678e091954f9328b03 (patch)
treefc05a2960c5432015dbfd29b91f743115fb2c1ea
parent8a55262c76a26db7908f8641340a3ca3c58a62e8 (diff)
downloadbcm5719-llvm-c82fb1520e848c93a11364678e091954f9328b03.tar.gz
bcm5719-llvm-c82fb1520e848c93a11364678e091954f9328b03.zip
Do not report errors if QMTest returns a non-zero value.
llvm-svn: 9404
-rw-r--r--llvm/test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile
index 8eeebfbbb5a..29f823666a8 100644
--- a/llvm/test/Makefile
+++ b/llvm/test/Makefile
@@ -42,10 +42,10 @@ QMTEST= QMTEST_CLASS_PATH=$(QMCLASSES) qmtest $(QMDB)
# 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.
OpenPOWER on IntegriCloud