From 1b1dc7a48b7072aa9ba3a6c93e76d07f7c12d31f Mon Sep 17 00:00:00 2001 From: Thomas Guyot-Sionnest Date: Sat, 24 Jan 2009 00:41:00 -0500 Subject: Fix paths in test_ini tests diff --git a/lib/tests/test_ini1.t b/lib/tests/test_ini1.t index 0487098..d481011 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 57388dd..4b0be4c 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++); } -- cgit v0.10-9-g596f