mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
b89b9095d6
This was being patched out downstream in Debian. A solution that works for everybody is to just not use a zero-length string when testing formatting with no conversion specifications.
50 lines
1.4 KiB
Makefile
50 lines
1.4 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
|
|
|
|
#
|
|
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 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
|