1
0
mirror of https://frontier.innolan.net/rainlance/amiga-fping.git synced 2025-11-23 07:01:52 +00:00
Files
amiga-fping/ci/test-issue-58.pl
David Schweikert 3ec68c8a3f test fixes
2014-05-01 15:22:21 +02:00

11 lines
286 B
Perl
Executable File

#!/usr/bin/perl -w
# regression testing for github issue #58
use Test::Command tests => 3;
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");