diff options
| author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-11-09 22:01:33 +0000 |
|---|---|---|
| committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-11-09 22:01:33 +0000 |
| commit | 1ac40064c5d0cd6a592e69b47bc72ce9b1fd7e1c (patch) | |
| tree | c56ed477cf30e0c47055972636c5844284abc17f /lib/tests/Makefile.am | |
| parent | 7a05ad0166ac11d4206d934825728b56a58d8edd (diff) | |
| download | monitoring-plugins-1ac40064c5d0cd6a592e69b47bc72ce9b1fd7e1c.tar.gz | |
Adding test for base64 lib
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1818 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/tests/Makefile.am')
| -rw-r--r-- | lib/tests/Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am index 9ca22d16..e7bbb76f 100644 --- a/lib/tests/Makefile.am +++ b/lib/tests/Makefile.am | |||
| @@ -7,9 +7,9 @@ check_PROGRAMS = @EXTRA_TEST@ | |||
| 7 | 7 | ||
| 8 | INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins | 8 | INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins |
| 9 | 9 | ||
| 10 | EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd | 10 | EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd test_base64 |
| 11 | 11 | ||
| 12 | EXTRA_DIST = test_utils.t test_disk.t test_tcp.t test_cmd.t | 12 | EXTRA_DIST = test_utils.t test_disk.t test_tcp.t test_cmd.t test_base64.t |
| 13 | 13 | ||
| 14 | LIBS = @LIBINTL@ | 14 | LIBS = @LIBINTL@ |
| 15 | 15 | ||
| @@ -33,6 +33,11 @@ test_cmd_CFLAGS = -g -I.. | |||
| 33 | test_cmd_LDFLAGS = -L/usr/local/lib -ltap | 33 | test_cmd_LDFLAGS = -L/usr/local/lib -ltap |
| 34 | test_cmd_LDADD = ../utils_cmd.o ../utils_base.o | 34 | test_cmd_LDADD = ../utils_cmd.o ../utils_base.o |
| 35 | 35 | ||
| 36 | test_base64_SOURCES = test_base64.c | ||
| 37 | test_base64_CFLAGS = -g -I.. | ||
| 38 | test_base64_LDFLAGS = -L/usr/local/lib -ltap | ||
| 39 | test_base64_LDADD = ../base64.o | ||
| 40 | |||
| 36 | test: ${noinst_PROGRAMS} | 41 | test: ${noinst_PROGRAMS} |
| 37 | perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS) | 42 | perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS) |
| 38 | 43 | ||
