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

John Criswell criswell at cs.uiuc.edu
Mon Sep 15 22:00:02 PDT 2003


Changes in directory llvm/test:

Makefile updated: 1.39 -> 1.40

---
Log message:

Allow multiple object trees to use the source tree tests at once by 
using a QMTEST_CLASS_PATH local to the object tree.
Add the gui target to start the QMTest gui (saves writing a few lines of
documentation too).	:)


---
Diffs of the changes:

Index: llvm/test/Makefile
diff -u llvm/test/Makefile:1.39 llvm/test/Makefile:1.40
--- llvm/test/Makefile:1.39	Mon Sep 15 16:54:49 2003
+++ llvm/test/Makefile	Mon Sep 15 21:59:26 2003
@@ -15,6 +15,7 @@
 
 # QMTest option specifying the location of the QMTest database.
 QMDB= -D $(LLVM_SRC_ROOT)/test/QMTestDB
+QMCLASSES=$(LLVM_OBJ_ROOT)/test/QMTestDB/QMTest
 
 #
 # This is configuration information used by the test suite.  In QM Test, it's
@@ -33,7 +34,7 @@
 #
 # Location of the QMTest program.
 #
-QMTEST= qmtest $(QMDB)
+QMTEST= QMTEST_CLASS_PATH=$(QMCLASSES) qmtest $(QMDB)
 
 
 #
@@ -72,4 +73,10 @@
 	$(QMTEST) register test llvm.AnalyzeTest
 	$(QMTEST) register test llvm.CTest
 	$(QMTEST) register resource llvm.BytecodeResource
+
+#
+# Start up the QMTest GUI
+#
+gui::
+	$(QMTEST) gui --no-browser --daemon
 





More information about the llvm-commits mailing list