diff options
author | Max Kellermann <max@duempel.org> | 2013-10-16 21:55:00 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-16 23:36:36 +0200 |
commit | 401a799a1b5de5d70a6b4c1d49235af0d5618f37 (patch) | |
tree | 503db86df98400dac818fa3bbfbe20e2055a1fa4 /Makefile.am | |
parent | ba98518c69d0501e67ef707f0d718cc678851415 (diff) | |
download | mpd-401a799a1b5de5d70a6b4c1d49235af0d5618f37.tar.gz mpd-401a799a1b5de5d70a6b4c1d49235af0d5618f37.tar.xz mpd-401a799a1b5de5d70a6b4c1d49235af0d5618f37.zip |
test: use the CPPUNIT framework for unit tests
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ebc4ac920..e37d49f15 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1411,9 +1411,11 @@ endif test_test_byte_reverse_SOURCES = \ test/test_byte_reverse.cxx +test_test_byte_reverse_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUNIT_CFLAGS) -DCPPUNIT_HAVE_RTTI=0 +test_test_byte_reverse_CXXFLAGS = $(AM_CXXFLAGS) -Wno-error=deprecated-declarations test_test_byte_reverse_LDADD = \ libutil.a \ - $(GLIB_LIBS) + $(CPPUNIT_LIBS) test_test_pcm_SOURCES = \ test/test_pcm_util.hxx \ @@ -1425,18 +1427,23 @@ test_test_pcm_SOURCES = \ test/test_pcm_mix.cxx \ test/test_pcm_all.hxx \ test/test_pcm_main.cxx +test_test_pcm_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUNIT_CFLAGS) -DCPPUNIT_HAVE_RTTI=0 +test_test_pcm_CXXFLAGS = $(AM_CXXFLAGS) -Wno-error=deprecated-declarations test_test_pcm_LDADD = \ $(PCM_LIBS) \ libutil.a \ + $(CPPUNIT_LIBS) \ $(GLIB_LIBS) test_test_queue_priority_SOURCES = \ src/Queue.cxx \ test/test_queue_priority.cxx +test_test_queue_priority_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUNIT_CFLAGS) -DCPPUNIT_HAVE_RTTI=0 +test_test_queue_priority_CXXFLAGS = $(AM_CXXFLAGS) -Wno-error=deprecated-declarations test_test_queue_priority_LDADD = \ libsystem.a \ libutil.a \ - $(GLIB_LIBS) + $(CPPUNIT_LIBS) noinst_PROGRAMS += src/pcm/dsd2pcm/dsd2pcm |