Imported Upstream version 2.6.5

This commit is contained in:
Laurent Bigonville 2012-08-12 23:39:31 +02:00
parent fefe62b2bd
commit a1fa151fc7
201 changed files with 7974 additions and 709 deletions

21
tests/Makefile.am Normal file
View file

@ -0,0 +1,21 @@
# Network UPS Tools: tests
if HAVE_CPPUNIT
TESTS = cppunittest
check_PROGRAMS = $(TESTS)
cppunittest_CXXFLAGS = $(CPPUNIT_CFLAGS)
cppunittest_LDFLAGS = $(CPPUNIT_LIBS)
# List of src files for CppUnit tests
CPPUNITTESTSRC = example.cpp
cppunittest_SOURCES = $(CPPUNITTESTSRC) cpputest.cpp
else !HAVE_CPPUNIT
EXTRA_DIST = example.cpp cpputest.cpp
endif !HAVE_CPPUNIT