summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-07 21:13:47 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-07 21:13:47 +0000
commitf424d7481e7b5f265df01e72baa590390f1cbb7d (patch)
tree6ba2f21a4124aeda61b776cb8d8d94f4ceae99ac /test
parent71ab896042757a17f8439df307ccf95a8c5e0946 (diff)
downloadllvm-f424d7481e7b5f265df01e72baa590390f1cbb7d.tar.gz
llvm-f424d7481e7b5f265df01e72baa590390f1cbb7d.tar.bz2
llvm-f424d7481e7b5f265df01e72baa590390f1cbb7d.tar.xz
Switching over to the new test database.
Adding new qmt files should no longer be necessary. QMTest should know just "magically" know what sort of test each file is. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile b/test/Makefile
index 546505fb54..e0dee95681 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -14,8 +14,8 @@ all:: qmtest
#
# QMTest option specifying the location of the QMTest database.
-QMDB= -D $(LLVM_SRC_ROOT)/test/QMTestDB
-QMCLASSES=$(LLVM_OBJ_ROOT)/test/QMTestDB/QMTest
+QMDB= -D $(LLVM_SRC_ROOT)/test
+QMCLASSES=$(LLVM_OBJ_ROOT)/test/QMTest
#
# This is configuration information used by the test suite. In QM Test, it's
@@ -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/QMTestDB/expectations.qmr $(CONTEXT)
+ $(QMTEST) run -O $(LLVM_SRC_ROOT)/test/expectations.qmr $(CONTEXT)
%.t:: $(LLVM_OBJ_ROOT)/test/tmp register
- $(QMTEST) run -O $(LLVM_SRC_ROOT)/test/QMTestDB/expectations.qmr $(CONTEXT) $*
+ $(QMTEST) run -O $(LLVM_SRC_ROOT)/test/expectations.qmr $(CONTEXT) $*
#
# Create the temporary directory used by the test suite.