1
0
mirror of https://frontier.innolan.net/rainlance/amiga-fping.git synced 2025-11-22 20:29:44 +00:00
Files
amiga-fping/ci/test-issue-56.pl
2014-03-05 10:09:45 +01:00

11 lines
273 B
Perl
Executable File

#!/usr/bin/perl -w
# regression testing for github issue #56
use Test::Command tests => 3;
my $cmd1 = Test::Command->new(cmd => "fping -t100 -p100 -C3 255.255.255.255");
$cmd1->exit_is_num(1);
$cmd1->stdout_is_eq("");
$cmd1->stderr_is_eq("\n255.255.255.255 : - - -\n");