diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-01 08:07:52 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-10-01 08:07:52 +0200 |
commit | 6c4f0aa3eaa0de86457dbc734ea552cd03a67a0d (patch) | |
tree | 3a5d5161046f3c97d9a18bd16285a807a20c2466 /test/Makefile.am |
Initial import of psocksxx version 0.0.5-1
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am new file mode 100644 index 0000000..b96458b --- /dev/null +++ b/test/Makefile.am @@ -0,0 +1,37 @@ +## [psocksxx] test/ + +AUTOMAKE_OPTIONS = subdir-objects +TESTS = +TEST_EXTENSIONS = .tap +TAP_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ + $(top_srcdir)/aux-build/tap-driver.sh + + +if HAVE_CPPUNIT +check_PROGRAMS = tap-runner.tap +TESTS += $(check_PROGRAMS) + +CPPUNIT_TEST_SOURCES = \ + lecho.h lecho.cpp \ + necho.h necho.cpp \ + socktimeoutexception_test.h socktimeoutexception_test.cpp \ + sockstreambuf_test.h sockstreambuf_test.cpp \ + lsockstream_test.h lsockstream_test.cpp \ + nsockaddr_test.h nsockaddr_test.cpp \ + nsockstream_test.h nsockstream_test.cpp \ + tcpnsockstream_test.h tcpnsockstream_test.cpp \ + udpnsockstream_test.h udpnsockstream_test.cpp + +tap_runner_tap_SOURCES = \ + tap-runner.cpp \ + $(CPPUNIT_TEST_SOURCES) \ + tap/tap_listener.h tap/tap_listener.cpp + +tap_runner_tap_CXXFLAGS = -I$(top_srcdir)/lib $(CPPUNIT_CFLAGS) +tap_runner_tap_LDFLAGS = $(top_builddir)/lib/psocksxx/libpsocksxx.la $(CPPUNIT_LIBS) +endif + + +# remove xunit XML output files +CLEANFILES = xunit.xml + |