1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
######################################################################
# Unit/regression tests, based on CxxTest.
# Use the 'test' target to run them.
# Edit TESTS and TESTLIBS to add more tests.
#
######################################################################
TESTS := $(srcdir)/decompiler/test/*.h
TEST_LIBS := \
common/file.o\
decompiler/codegen.o \
decompiler/control_flow.o \
decompiler/disassembler.o \
decompiler/reassembler.o \
decompiler/instruction.o \
decompiler/simple_disassembler.o \
decompiler/value.o \
decompiler/scummv6/disassembler.o \
decompiler/scummv6/codegen.o \
decompiler/scummv6/engine.o \
decompiler/kyra/disassembler.o \
decompiler/kyra/codegen.o \
decompiler/kyra/engine.o \
decompiler/test/disassembler/pasc.o \
decompiler/test/disassembler/subopcode.o \
decompiler/unknown_opcode.o \
#
TEST_FLAGS := --runner=StdioPrinter
TEST_CFLAGS := -I$(srcdir)/decompiler/test/cxxtest
TEST_LDFLAGS := $(decompile_LIBS) $(LDFLAGS)
# Enable this to get an X11 GUI for the error reporter.
#TEST_FLAGS += --gui=X11Gui
#TEST_LDFLAGS += -L/usr/X11R6/lib -lX11
test: decompiler/test/runner
./decompiler/test/runner
decompiler/test/runner: decompiler/test/runner.cpp $(TEST_LIBS)
$(QUIET_LINK)$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(TEST_LDFLAGS) $(TEST_CFLAGS) -o $@ $+
decompiler/test/runner.cpp: $(TESTS)
@mkdir -p decompiler
@mkdir -p decompiler/test
$(srcdir)/decompiler/test/cxxtest/cxxtestgen.pl $(TEST_FLAGS) -o $@ $+
clean: clean-test
clean-test:
-$(RM) decompiler/test/runner.cpp decompiler/test/runner
.PHONY: test clean-test
|