summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-08 21:25:35 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-08 21:25:35 +0000
commitf780f7765173a9567576e99993a1655601a4e674 (patch)
tree744e7f034dbb65fd6f36964f941c2d8b00319516 /test
parent79ad13808bdd1b248cf29fa840705955fa89a38f (diff)
downloadllvm-f780f7765173a9567576e99993a1655601a4e674.tar.gz
llvm-f780f7765173a9567576e99993a1655601a4e674.tar.bz2
llvm-f780f7765173a9567576e99993a1655601a4e674.tar.xz
Added the .t implicit rule. You can now run an individual set of QMTests by
specifying "make <test>.t" For example, make feature.t will run the feature tests. Removed the QMTESTS variable since it is no longer used. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Makefile b/test/Makefile
index df389275e9..1e4111648a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -13,10 +13,6 @@ all:: qmtest
# will use QMTest by default.
#
-# List of the functioning QM Tests
-QMTESTS=feature \
- regression
-
# QMTest option specifying the location of the QMTest database.
QMDB= -D $(LLVM_SRC_ROOT)/test/QMTestDB
@@ -46,6 +42,8 @@ QMTEST= qmtest $(QMDB)
qmtest:: $(LLVM_OBJ_ROOT)/test/tmp register
$(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTestDB/expectations.qmr $(CONTEXT)
+%.t:: $(LLVM_OBJ_ROOT)/test/tmp register
+ $(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTestDB/expectations.qmr $(CONTEXT) $*
#
# Create the temporary directory used by the test suite.