Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: schweikert/fping
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 358e61ce470fa30937794e93d77916dda70f5227
Choose a base ref
..
head repository: schweikert/fping
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3c2b44edf4392a15323c873ee7854438b1bc601a
Choose a head ref
Showing with 6 additions and 6 deletions.
  1. +6 −6 ci/test-06-options-f-h.pl
12 changes: 6 additions & 6 deletions ci/test-06-options-f-h.pl
Original file line number Diff line number Diff line change
@@ -233,7 +233,7 @@
# fping -g (empty range - IPv6 - crossing 64 bit boundary)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -g 2001:db8:0:2:: 2001:db8:0:1:ffff:ffff:ffff:ffff");
$cmd->exit_is_num(1);
@@ -296,7 +296,7 @@
# fping -g (range - unreachable documentation addresses)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -t10 -r0 -i1 -g 2001:db8:1:2:3:4:5:6 2001:db8:1:2:3:4:5:7");
$cmd->exit_is_num(1);
@@ -306,7 +306,7 @@
# fping -g (range - unreachable documentation addresses - crossing 64 bit boundary)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -t10 -i1 -r0 -g 2001:db8:1:2:ffff:ffff:ffff:fffe 2001:db8:1:3::1");
$cmd->exit_is_num(1);
@@ -438,7 +438,7 @@
# fping -g (CIDR - IPv6 - unreachable documentation addresses - host prefix)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -t10 -r0 -g 2001:db8:abcd:1234:5678:9098:7654:4321/128");
$cmd->exit_is_num(1);
@@ -448,7 +448,7 @@
# fping -g (CIDR - IPv6 - unreachable documentation addresses - point-to-point prefix)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -t10 -r0 -g 2001:db8:abcd:1234:5678:9098:7654:4320/127");
$cmd->exit_is_num(1);
@@ -458,7 +458,7 @@
# fping -g (CIDR - IPv6 - unreachable documentation addresses - normal prefix)
SKIP: {
if($ENV{SKIP_IPV6}) {
skip 'Skip IPv6 tests', 3;
skip 'Skip IPv6 tests', 2;
}
my $cmd = Test::Command->new(cmd => "fping -t10 -i1 -r0 -g 2001:db8:abcd:1234:5678:9098:7654:4320/126");
$cmd->exit_is_num(1);