mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
59 lines
1.6 KiB
Makefile
59 lines
1.6 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/audio/*.h
|
|
TEST_LIBS := audio/libaudio.a common/libcommon.a
|
|
|
|
ifeq ($(ENABLE_WINTERMUTE), STATIC_PLUGIN)
|
|
TESTS += $(srcdir)/test/engines/wintermute/*.h
|
|
TEST_LIBS += engines/wintermute/libwintermute.a
|
|
endif
|
|
|
|
ifeq ($(ENABLE_ULTIMA), STATIC_PLUGIN)
|
|
TESTS += $(srcdir)/test/engines/ultima/*/*/*.h
|
|
TEST_LIBS += engines/ultima/libultima.a
|
|
endif
|
|
|
|
#
|
|
TEST_FLAGS := --runner=StdioPrinter --no-std --no-eh --include=$(srcdir)/test/cxxtest_mingw.h
|
|
TEST_CFLAGS := $(CFLAGS) -I$(srcdir)/test/cxxtest
|
|
TEST_LDFLAGS := $(LDFLAGS) $(LIBS)
|
|
TEST_CXXFLAGS := $(filter-out -Wglobal-constructors,$(CXXFLAGS))
|
|
|
|
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)
|
|
$(QUIET_CXX)$(CXX) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_CFLAGS) -o $@ $+ $(TEST_LDFLAGS)
|
|
test/runner.cpp: $(TESTS)
|
|
@mkdir -p test
|
|
$(srcdir)/test/cxxtest/cxxtestgen.py $(TEST_FLAGS) -o $@ $+
|
|
|
|
clean: clean-test
|
|
clean-test:
|
|
-$(RM) test/runner.cpp test/runner
|
|
|
|
.PHONY: test clean-test
|