diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-23 14:11:53 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-23 14:11:53 +0000 |
commit | 49207925b37c1424165dea46a2aea07564374319 (patch) | |
tree | 02532308804e647b70ab6776ad0fd3a8c4d37c6f /test/Makefile | |
parent | 653de272c21eb532294a3a3c6a39ebfd15165ee5 (diff) |
Do not report errors if QMTest returns a non-zero value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9404 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 8eeebfbbb5..29f823666a 100644 --- a/test/Makefile +++ b/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. |