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

John Criswell criswell at cs.uiuc.edu
Mon Sep 8 16:27:03 PDT 2003


Changes in directory llvm/test:

Makefile updated: 1.37 -> 1.38

---
Log message:

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.



---
Diffs of the changes:

Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.37 llvm/test/Makefile:1.38
--- llvm/test/Makefile:1.37	Sat Sep  6 10:12:21 2003
+++ llvm/test/Makefile	Mon Sep  8 16:25:35 2003
@@ -13,10 +13,6 @@
 #	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:: $(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.





More information about the llvm-commits mailing list