summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-09-06 15:12:21 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-09-06 15:12:21 +0000
commitee29d2aa20a45b2ac6991c7ba6125d6698f0ca98 (patch)
treed7cc683d39ce0562393a04aac116a7a48b9a1a45 /test/Makefile
parenta37fefd064c591969690933e113eab2dd6a60558 (diff)
downloadllvm-ee29d2aa20a45b2ac6991c7ba6125d6698f0ca98.tar.gz
llvm-ee29d2aa20a45b2ac6991c7ba6125d6698f0ca98.tar.bz2
llvm-ee29d2aa20a45b2ac6991c7ba6125d6698f0ca98.tar.xz
Checkin of autoconf-style object root.
Use QMTest for the feature and Regression tests. Continue using the Makefile system for the Programs tests. Adjusted the Makefile rules to handle building outside the source directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/Makefile b/test/Makefile
index 5e916c5d67..df389275e9 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,8 +1,13 @@
LEVEL = ..
-DIRS = Feature Regression Programs
+DIRS = Programs
include Makefile.tests
#
+# Make QMTest the default for testing features and regressions
+#
+all:: qmtest
+
+#
# New QMTest functionality:
# The test suite is being transitioned over to QMTest. Eventually, it
# will use QMTest by default.
@@ -10,13 +15,7 @@ include Makefile.tests
# List of the functioning QM Tests
QMTESTS=feature \
- regression.assembler \
- regression.analysis \
- regression.bugpoint \
- regression.cbackend \
- regression.jello \
- regression.linker \
- regression.other
+ regression
# QMTest option specifying the location of the QMTest database.
QMDB= -D $(LLVM_SRC_ROOT)/test/QMTestDB
@@ -27,12 +26,13 @@ QMDB= -D $(LLVM_SRC_ROOT)/test/QMTestDB
#
CONTEXT= -c srcroot=$(LLVM_SRC_ROOT) \
-c buildroot=$(LLVM_OBJ_ROOT) \
- -c buildtype=$(CONFIGURATION) \
+ -c buildtype=$(CONFIGURATION) \
-c tmpdir=$(LLVM_OBJ_ROOT)/test/tmp \
- -c cc=$(CC) \
- -c cxx=$(CXX) \
- -c "llvmgcc=$(LLVMGCC)" \
- -c make=$(MAKE)
+ -c coresize=0 \
+ -c cc=$(CC) \
+ -c cxx=$(CXX) \
+ -c "llvmgcc=$(LLVMGCC)" \
+ -c make=$(MAKE)
#
# Location of the QMTest program.