summaryrefslogtreecommitdiffstats
path: root/plugins/tests
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-02-24 16:41:06 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-02-24 16:41:06 (GMT)
commit6aa8cc090daa646f6d3d7b5af2ab5e59dd7d9b18 (patch)
treec47865be2c6a40a09c029e4aa330bc3864afd463 /plugins/tests
parent4a7401ea71fc7735be5fe371eb155284eb3a9583 (diff)
downloadmonitoring-plugins-6aa8cc090daa646f6d3d7b5af2ab5e59dd7d9b18.tar.gz
Use the installed tap library instead of requesting a compiled object
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1318 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/tests')
-rw-r--r--plugins/tests/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/tests/Makefile.am b/plugins/tests/Makefile.am
index cd4caeb..c73725d 100644
--- a/plugins/tests/Makefile.am
+++ b/plugins/tests/Makefile.am
@@ -16,7 +16,7 @@ LIBS = @LIBINTL@
16test_utils_SOURCES = test_utils.c 16test_utils_SOURCES = test_utils.c
17test_utils_CFLAGS = -g -I.. 17test_utils_CFLAGS = -g -I..
18test_utils_LDFLAGS = -L.. 18test_utils_LDFLAGS = -L..
19test_utils_LDADD = ../utils.o @EXTRA_TAPOBJ@ 19test_utils_LDADD = ../utils.o $(TAPLIBS)
20 20
21test: ${noinst_PROGRAMS} 21test: ${noinst_PROGRAMS}
22 perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS) 22 perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS)