mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-21 09:21:08 +00:00
f83bfc0bbf
On my OS X machine, -Wglobal-constructors is always added by configure. But the test runner makes heavy use of global constructors. This change allows me to run "make test" even when using -Werror. svn-id: r54083
43 lines
1.3 KiB
Makefile
43 lines
1.3 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/sound/*.h
|
|
TEST_LIBS := sound/libsound.a common/libcommon.a
|
|
|
|
#
|
|
TEST_FLAGS := --runner=StdioPrinter
|
|
TEST_CFLAGS := -I$(srcdir)/test/cxxtest
|
|
TEST_LDFLAGS := $(LIBS)
|
|
TEST_CXXFLAGS := $(filter-out -Wglobal-constructors,$(CXXFLAGS))
|
|
|
|
ifdef HAVE_GCC3
|
|
# In test/common/str.h, we test a zero length format string. This causes GCC
|
|
# to generate a warning which in turn poses a problem when building with -Werror.
|
|
# To work around this, we disable -Wformat here.
|
|
TEST_CFLAGS += -Wno-format
|
|
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_LINK)$(CXX) $(TEST_CXXFLAGS) $(CPPFLAGS) $(TEST_LDFLAGS) $(TEST_CFLAGS) -o $@ $+
|
|
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
|