aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-01-24 00:41:00 -0500
committerGravatar Thomas Guyot-Sionnest <dermoth@aei.ca> 2009-01-24 00:41:00 -0500
commit1b1dc7a48b7072aa9ba3a6c93e76d07f7c12d31f (patch)
treea91f801c62047c5c427c0e2c9a46e6c8f0181f6e
parent8b103c0c778aa22dbe7688e7d11df20b7c80be70 (diff)
downloadmonitoring-plugins-1b1dc7a48b7072aa9ba3a6c93e76d07f7c12d31f.tar.gz
Fix paths in test_ini tests
-rwxr-xr-xlib/tests/test_ini1.t4
-rwxr-xr-xlib/tests/test_ini3.t4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/tests/test_ini1.t b/lib/tests/test_ini1.t
index 0487098c..d4810116 100755
--- a/lib/tests/test_ini1.t
+++ b/lib/tests/test_ini1.t
@@ -1,6 +1,6 @@
#!/usr/bin/perl
use Test::More;
-if (! -e "./test_ini") {
+if (! -e "./test_ini1") {
plan skip_all => "./test_ini not compiled - please install tap library and/or enable parse-ini to test";
}
-exec "./test_ini";
+exec "./test_ini1";
diff --git a/lib/tests/test_ini3.t b/lib/tests/test_ini3.t
index 57388dda..4b0be4c6 100755
--- a/lib/tests/test_ini3.t
+++ b/lib/tests/test_ini3.t
@@ -3,7 +3,7 @@ use Test::More;
use strict;
use warnings;
-if (! -e "./test_ini") {
+if (! -e "./test_ini3") {
plan skip_all => "./test_ini not compiled - please install tap library and/or enable parse-ini to test";
}
@@ -28,7 +28,7 @@ foreach my $args (@TESTS) {
} else {
delete($ENV{"NAGIOS_CONFIG_PATH"});
}
- system {'./test_ini2'} @$args;
+ system {'./test_ini3'} @$args;
cmp_ok($?>>8, '==', $rc, "Parse-ini die " . $count++);
}