1
0
mirror of https://frontier.innolan.net/rainlance/amiga-fping.git synced 2025-11-21 14:55:50 +00:00

more tests

This commit is contained in:
David Schweikert
2014-05-02 23:41:54 +02:00
parent c9f276b3cd
commit 3aa530c2ff

View File

@ -13,7 +13,7 @@ system("cp $fping6_bin /tmp/fping6.copy; chmod +x /tmp/fping6.copy");
my $cmd = Test::Command->new(cmd => "/tmp/fping.copy 127.0.0.1");
$cmd->exit_is_num(4);
$cmd->stdout_is_eq("");
$cmd->stderr_is_eq("(null): can't create socket (must run as root?) : Permission denied\n");
$cmd->stderr_like(qr{\(null\): can't create socket \(must run as root\?\) : .*\n});
}
# fping6
@ -21,5 +21,5 @@ $cmd->stderr_is_eq("(null): can't create socket (must run as root?) : Permission
my $cmd = Test::Command->new(cmd => "/tmp/fping6.copy ::1");
$cmd->exit_is_num(4);
$cmd->stdout_is_eq("");
$cmd->stderr_is_eq("(null): can't create raw socket (must run as root?) : Protocol not supported\n");
$cmd->stderr_like(qr{\(null\): can't create raw socket \(must run as root\?\) : .*\n});
}