mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
94 lines
2.8 KiB
Makefile
94 lines
2.8 KiB
Makefile
######################################################################
|
|
# Unit/regression tests, based on CxxTest.
|
|
# Use the 'test' target to run them.
|
|
# Edit TESTS and TESTLIBS to add more tests.
|
|
#
|
|
######################################################################
|
|
|
|
TESTS := $(srcdir)/test/common/*.h $(srcdir)/test/common/formats/*.h $(srcdir)/test/audio/*.h $(srcdir)/test/math/*.h $(srcdir)/test/image/*.h
|
|
TEST_LIBS :=
|
|
|
|
ifdef POSIX
|
|
TEST_LIBS += test/null_osystem.o \
|
|
backends/fs/posix/posix-fs-factory.o \
|
|
backends/fs/posix/posix-fs.o \
|
|
backends/fs/posix/posix-iostream.o \
|
|
backends/fs/abstract-fs.o \
|
|
backends/fs/stdiostream.o \
|
|
backends/modular-backend.o
|
|
endif
|
|
|
|
ifdef WIN32
|
|
TEST_LIBS += test/null_osystem.o \
|
|
backends/fs/windows/windows-fs-factory.o \
|
|
backends/fs/windows/windows-fs.o \
|
|
backends/fs/abstract-fs.o \
|
|
backends/fs/stdiostream.o \
|
|
backends/modular-backend.o \
|
|
backends/platform/sdl/win32/win32_wrapper.o
|
|
endif
|
|
|
|
TEST_LIBS += audio/libaudio.a math/libmath.a common/formats/libformats.a common/compression/libcompression.a common/libcommon.a image/libimage.a graphics/libgraphics.a
|
|
|
|
ifeq ($(ENABLE_WINTERMUTE), STATIC_PLUGIN)
|
|
TESTS += $(srcdir)/test/engines/wintermute/*.h
|
|
TEST_LIBS += engines/wintermute/libwintermute.a
|
|
endif
|
|
|
|
ifeq ($(ENABLE_ULTIMA), STATIC_PLUGIN)
|
|
ifdef ENABLE_ULTIMA1
|
|
TESTS += $(srcdir)/test/engines/ultima/shared/*/*.h
|
|
endif
|
|
ifdef ENABLE_ULTIMA8
|
|
TESTS += $(srcdir)/test/engines/ultima/ultima8/*/*.h
|
|
endif
|
|
TEST_LIBS += engines/ultima/libultima.a
|
|
endif
|
|
|
|
#
|
|
TEST_FLAGS := --runner=StdioPrinter --no-std --no-eh
|
|
TEST_CFLAGS := $(CFLAGS) -I$(srcdir)/test/cxxtest
|
|
TEST_LDFLAGS := $(LDFLAGS) $(LIBS)
|
|
TEST_CXXFLAGS := $(filter-out -Wglobal-constructors,$(CXXFLAGS))
|
|
TEST_CXXFLAGS += -Wno-self-assign-overloaded
|
|
|
|
ifdef WIN32
|
|
TEST_LDFLAGS := $(filter-out -mwindows,$(TEST_LDFLAGS))
|
|
endif
|
|
|
|
ifdef N64
|
|
TEST_LDFLAGS := $(filter-out -mno-crt0,$(TEST_LDFLAGS))
|
|
endif
|
|
|
|
ifdef PSP
|
|
TEST_LIBS += backends/platform/psp/memory.o \
|
|
backends/platform/psp/mp3.o \
|
|
backends/platform/psp/trace.o
|
|
endif
|
|
|
|
# Enable this to get an X11 GUI for the error reporter.
|
|
#TEST_FLAGS += --gui=X11Gui
|
|
#TEST_LDFLAGS += -L/usr/X11R6/lib -lX11
|
|
|
|
|
|
test: test/runner
|
|
./test/runner
|
|
test/runner: test/runner.cpp $(TEST_LIBS) copy-dat
|
|
+$(QUIET_CXX)$(LD) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ test/runner.cpp $(TEST_LIBS) $(TEST_LDFLAGS)
|
|
test/runner.cpp: $(TESTS) $(srcdir)/test/module.mk
|
|
@mkdir -p test
|
|
$(srcdir)/test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+
|
|
|
|
clean: clean-test
|
|
clean-test:
|
|
-$(RM) test/runner.cpp test/runner test/engine-data/encoding.dat test/null_osystem.o
|
|
-rmdir test/engine-data
|
|
|
|
test/engine-data/encoding.dat: $(srcdir)/dists/engine-data/encoding.dat
|
|
$(MKDIR) test/engine-data
|
|
$(CP) $(srcdir)/dists/engine-data/encoding.dat test/engine-data/encoding.dat
|
|
|
|
copy-dat: test/engine-data/encoding.dat
|
|
|
|
.PHONY: test clean-test copy-dat
|