diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-04-02 09:11:44 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-04-02 09:11:44 +0000 |
commit | 0d13deb0e44afb80ec0a35e827548d891d48f6b6 (patch) | |
tree | 7723807c1c17109104f6ebf3fea141e87a50ba46 /lib/tests | |
parent | 63897a417917907099b72f4e679890355a7a78a0 (diff) | |
download | monitoring-plugins-0d13deb0e44afb80ec0a35e827548d891d48f6b6.tar.gz |
- Add --enable-extra-opts configure option for compiling extra-opts support
- Auto-update po/pot files
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1973 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/tests')
-rw-r--r-- | lib/tests/Makefile.am | 16 | ||||
-rwxr-xr-x | lib/tests/test_ini.t | 2 | ||||
-rwxr-xr-x | lib/tests/test_opts.t | 2 |
3 files changed, 16 insertions, 4 deletions
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am index bd25ccfe..25e2bed3 100644 --- a/lib/tests/Makefile.am +++ b/lib/tests/Makefile.am @@ -7,9 +7,11 @@ check_PROGRAMS = @EXTRA_TEST@ INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins -EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd test_base64 +EXTRA_PROGRAMS = test_utils test_disk test_tcp test_cmd test_base64 test_ini test_opts -EXTRA_DIST = test_utils.t test_disk.t test_tcp.t test_cmd.t test_base64.t +np_test_scripts = test_base64.t test_cmd.t test_disk.t test_ini.t test_opts.t test_tcp.t test_utils.t +np_test_files = config-dos.ini config-opts.ini config-tiny.ini plugin.ini plugins.ini +EXTRA_DIST = $(np_test_scripts) $(np_test_files) LIBS = @LIBINTL@ @@ -38,6 +40,16 @@ test_base64_CFLAGS = -g -I.. test_base64_LDFLAGS = -L/usr/local/lib -ltap test_base64_LDADD = $(top_srcdir)/gl/base64.o +test_ini_SOURCES = test_ini.c +test_ini_CFLAGS = -g -I.. +test_ini_LDFLAGS = -L/usr/local/lib -ltap +test_ini_LDADD = ../utils_base.o ../parse_ini.o + +test_opts_SOURCES = test_opts.c +test_opts_CFLAGS = -g -I.. +test_opts_LDFLAGS = -L/usr/local/lib -ltap +test_opts_LDADD = ../utils_base.o ../parse_ini.o ../extra_opts.o + test: ${noinst_PROGRAMS} perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS) diff --git a/lib/tests/test_ini.t b/lib/tests/test_ini.t index b130a01b..0487098c 100755 --- a/lib/tests/test_ini.t +++ b/lib/tests/test_ini.t @@ -1,6 +1,6 @@ #!/usr/bin/perl use Test::More; if (! -e "./test_ini") { - plan skip_all => "./test_ini not compiled - please install tap library to test"; + plan skip_all => "./test_ini not compiled - please install tap library and/or enable parse-ini to test"; } exec "./test_ini"; diff --git a/lib/tests/test_opts.t b/lib/tests/test_opts.t index 86a5b21a..d69b8f1d 100755 --- a/lib/tests/test_opts.t +++ b/lib/tests/test_opts.t @@ -1,6 +1,6 @@ #!/usr/bin/perl use Test::More; if (! -e "./test_opts") { - plan skip_all => "./test_opts not compiled - please install tap library to test"; + plan skip_all => "./test_opts not compiled - please install tap library and/or enable parse-ini to test"; } exec "./test_opts"; |