2001-11-05 01:22:16 +01:00
|
|
|
LEVEL = ..
|
2004-09-05 10:18:23 +02:00
|
|
|
DIRS =
|
2002-01-23 22:36:59 +01:00
|
|
|
|
2003-09-06 17:12:21 +02:00
|
|
|
#
|
|
|
|
# Make QMTest the default for testing features and regressions
|
2003-10-27 18:46:42 +01:00
|
|
|
# Do this first to force QMTest to run first
|
2003-09-06 17:12:21 +02:00
|
|
|
#
|
|
|
|
all:: qmtest
|
|
|
|
|
2003-10-27 18:46:42 +01:00
|
|
|
#
|
|
|
|
# Include other test rules
|
|
|
|
#
|
|
|
|
include Makefile.tests
|
|
|
|
|
2003-08-21 17:09:29 +02:00
|
|
|
#
|
|
|
|
# New QMTest functionality:
|
|
|
|
# The test suite is being transitioned over to QMTest. Eventually, it
|
|
|
|
# will use QMTest by default.
|
|
|
|
#
|
|
|
|
|
|
|
|
# QMTest option specifying the location of the QMTest database.
|
2003-10-07 23:13:47 +02:00
|
|
|
QMDB= -D $(LLVM_SRC_ROOT)/test
|
|
|
|
QMCLASSES=$(LLVM_OBJ_ROOT)/test/QMTest
|
2003-08-21 17:09:29 +02:00
|
|
|
|
2003-11-19 22:13:25 +01:00
|
|
|
#
|
|
|
|
# Determine which expectations file we will use
|
|
|
|
#
|
|
|
|
QMEXPECT:=$(LLVM_SRC_ROOT)/test/QMTest/expectations.unknown.qmr
|
|
|
|
ifeq ($(OS),Linux)
|
|
|
|
QMEXPECT:=$(LLVM_SRC_ROOT)/test/QMTest/expectations.linux.qmr
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(OS),SunOS)
|
|
|
|
QMEXPECT:=$(LLVM_SRC_ROOT)/test/QMTest/expectations.sunos.qmr
|
|
|
|
endif
|
|
|
|
|
2004-03-29 22:23:11 +02:00
|
|
|
ifeq ($(OS),Darwin)
|
|
|
|
QMEXPECT:=$(LLVM_SRC_ROOT)/test/QMTest/expectations.darwin.qmr
|
|
|
|
endif
|
|
|
|
|
2003-08-21 17:09:29 +02:00
|
|
|
#
|
|
|
|
# This is configuration information used by the test suite. In QM Test, it's
|
|
|
|
# called a 'context.'
|
|
|
|
#
|
2003-10-11 02:10:05 +02:00
|
|
|
CONTEXT= -c "srcroot=$(LLVM_SRC_ROOT)" \
|
|
|
|
-c "buildroot=$(LLVM_OBJ_ROOT)" \
|
2004-10-30 11:19:36 +02:00
|
|
|
-c "buildtype=$(Configuration)" \
|
2003-10-11 02:10:05 +02:00
|
|
|
-c "tmpdir=$(LLVM_OBJ_ROOT)/test/tmp" \
|
|
|
|
-c "coresize=0" \
|
|
|
|
-c "cc=$(CC)" \
|
|
|
|
-c "cxx=$(CXX)" \
|
2003-09-06 17:12:21 +02:00
|
|
|
-c "llvmgcc=$(LLVMGCC)" \
|
2003-09-30 21:04:08 +02:00
|
|
|
-c "llvmgxx=$(LLVMGXX)" \
|
2004-08-03 00:29:38 +02:00
|
|
|
-c "make=$(MAKE)" \
|
|
|
|
-c "python=$(PYTHON)"
|
2003-08-21 17:09:29 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Location of the QMTest program.
|
|
|
|
#
|
2003-09-16 04:59:26 +02:00
|
|
|
QMTEST= QMTEST_CLASS_PATH=$(QMCLASSES) qmtest $(QMDB)
|
2003-08-21 17:09:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Execute the tests
|
|
|
|
#
|
|
|
|
qmtest:: $(LLVM_OBJ_ROOT)/test/tmp register
|
2003-11-19 22:13:25 +01:00
|
|
|
-$(QMTEST) run -O $(QMEXPECT) $(CONTEXT)
|
2003-08-21 17:09:29 +02:00
|
|
|
|
2003-09-08 23:25:35 +02:00
|
|
|
%.t:: $(LLVM_OBJ_ROOT)/test/tmp register
|
2003-11-19 22:13:25 +01:00
|
|
|
-$(QMTEST) run -O $(QMEXPECT) $(CONTEXT) $*
|
2003-08-21 17:09:29 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# Create the temporary directory used by the test suite.
|
|
|
|
#
|
|
|
|
$(LLVM_OBJ_ROOT)/test/tmp::
|
|
|
|
${MKDIR} $(LLVM_OBJ_ROOT)/test/tmp
|
|
|
|
|
|
|
|
#
|
2003-09-15 23:54:49 +02:00
|
|
|
# Right now, QMTest compiles the python test classes and put them into the
|
|
|
|
# source tree. Since Python bytecode is *not* cross-platform compatible (I
|
|
|
|
# think), we'll regenerate every time.
|
2003-08-21 17:09:29 +02:00
|
|
|
#
|
2003-09-15 23:54:49 +02:00
|
|
|
# Simultaneous builds won't work, but shared source trees will.
|
|
|
|
#
|
|
|
|
register:
|
2003-08-21 17:09:29 +02:00
|
|
|
$(QMTEST) register test llvm.TestAsmDisasm
|
|
|
|
$(QMTEST) register test llvm.AssembleTest
|
|
|
|
$(QMTEST) register test llvm.ConvertToCTest
|
|
|
|
$(QMTEST) register test llvm.LLToCTest
|
|
|
|
$(QMTEST) register test llvm.MachineCodeTest
|
|
|
|
$(QMTEST) register test llvm.TestOptimizer
|
|
|
|
$(QMTEST) register test llvm.LLITest
|
|
|
|
$(QMTEST) register test llvm.TestRunner
|
|
|
|
$(QMTEST) register test llvm.VerifierTest
|
|
|
|
$(QMTEST) register test llvm.CTest
|
2003-09-30 21:04:08 +02:00
|
|
|
$(QMTEST) register test llvm.CXXTest
|
2003-10-07 23:30:07 +02:00
|
|
|
$(QMTEST) register database llvmdb.llvmdb
|
2003-08-21 17:09:29 +02:00
|
|
|
|
2003-09-16 04:59:26 +02:00
|
|
|
# Start up the QMTest GUI
|
|
|
|
gui::
|
|
|
|
$(QMTEST) gui --no-browser --daemon
|
|
|
|
|
2003-11-21 02:12:47 +01:00
|
|
|
# Also get rid of qmtest garbage when we 'make clean' in this directory.
|
2003-12-11 05:48:38 +01:00
|
|
|
clean:: qmtest-clean
|
|
|
|
|
|
|
|
qmtest-clean:
|
2003-10-10 21:52:30 +02:00
|
|
|
$(RM) -rf $(LLVM_OBJ_ROOT)/test/tmp
|
2003-11-20 20:57:17 +01:00
|
|
|
$(RM) -f $(LLVM_SRC_ROOT)/test/QMTest/*.pyo \
|
|
|
|
$(LLVM_OBJ_ROOT)/test/QMTest/*.pyo
|
2003-11-21 02:12:47 +01:00
|
|
|
$(RM) -f $(LLVM_SRC_ROOT)/test/results.qmr \
|
|
|
|
$(LLVM_OBJ_ROOT)/test/results.qmr
|
2003-10-10 21:52:30 +02:00
|
|
|
|