From 5ba345c6c4072cb7bdcc59e20e1200ea15a73ea1 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 8 Sep 2003 21:25:35 +0000 Subject: [PATCH] Added the .t implicit rule. You can now run an individual set of QMTests by specifying "make .t" For example, make feature.t will run the feature tests. Removed the QMTESTS variable since it is no longer used. llvm-svn: 8414 --- llvm/test/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/llvm/test/Makefile b/llvm/test/Makefile index df389275e99d..1e4111648a7a 100644 --- a/llvm/test/Makefile +++ b/llvm/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. -- GitLab