You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
286 B
Perl
11 lines
286 B
Perl
#!/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("fping: -g works only with IPv4 addresses\n");
|