test fixes

This commit is contained in:
David Schweikert 2014-05-01 15:22:21 +02:00
parent 9a5c6589b2
commit 3ec68c8a3f
2 changed files with 2 additions and 2 deletions

View File

@ -29,6 +29,6 @@ $cmd->stdout_like(qr{127\.0\.0\.1 : \[0\], 84 bytes, 0\.\d+ ms \(0.\d+ avg, 0% l
{
my $cmd = Test::Command->new(cmd => "fping -m localhost");
$cmd->exit_is_num(0);
$cmd->stdout_is_eq("127.0.0.1 is alive\n");
$cmd->stdout_is_eq("localhost is alive\n");
$cmd->stderr_is_eq("");
}

View File

@ -4,7 +4,7 @@
use Test::Command tests => 3;
my $cmd1 = Test::Command->new(cmd => "src/fping -a -g 2001:db8:120:4161::4/64");
my $cmd1 = Test::Command->new(cmd => "fping -a -g 2001:db8:120:4161::4/64");
$cmd1->exit_is_num(1);
$cmd1->stdout_is_eq("");
$cmd1->stderr_is_eq("Error: -g works only with IPv4 addresses\n");