skip timing test on macos

travis-fix
David Schweikert 3 years ago
parent f1d3615706
commit cf03fa5bdb

@ -85,14 +85,17 @@ $cmd->stderr_is_eq("");
} }
# fping -B # fping -B
{ SKIP: {
my $t0 = [gettimeofday]; if($^O eq 'darwin') {
my $cmd = Test::Command->new(cmd => "fping -t 100 -r 3 -B 2 8.8.8.7"); skip 'timing test not reliable on macOS', 5;
$cmd->exit_is_num(1); }
$cmd->stdout_is_eq("8.8.8.7 is unreachable\n"); my $t0 = [gettimeofday];
$cmd->stderr_like(qr{^(|(8.8.8.7: error while sending ping: No route to host\n)+)$}); my $cmd = Test::Command->new(cmd => "fping -t 100 -r 3 -B 2 8.8.8.7");
my $elapsed = tv_interval($t0); $cmd->exit_is_num(1);
# 0.1 + 0.2 + 0.4 + 0.8 = 1.5 $cmd->stdout_is_eq("8.8.8.7 is unreachable\n");
cmp_ok($elapsed, '>=', 1.5); $cmd->stderr_like(qr{^(|(8.8.8.7: error while sending ping: No route to host\n)+)$});
cmp_ok($elapsed, '<', 1.9); my $elapsed = tv_interval($t0);
# 0.1 + 0.2 + 0.4 + 0.8 = 1.5
cmp_ok($elapsed, '>=', 1.5);
cmp_ok($elapsed, '<', 1.9);
} }

Loading…
Cancel
Save