From d6d9c653eb20d742ae93ece9cbd8237c1150185c Mon Sep 17 00:00:00 2001 From: David Schweikert Date: Thu, 4 Apr 2024 16:39:55 +0200 Subject: [PATCH] Remove flaky test for now. Remove the 'fping -X 2 --generate 8.8.0.0/29' test, because it is currently failing on the MacOS runner. Also, I am not sure that it is a good idea to ping the IPs 8.8.0.1 and 8.8.0.2 and rely on them being up. --- ci/test-10-option-u-x.pl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ci/test-10-option-u-x.pl b/ci/test-10-option-u-x.pl index 72fc03e..9e7e500 100755 --- a/ci/test-10-option-u-x.pl +++ b/ci/test-10-option-u-x.pl @@ -46,11 +46,3 @@ $cmd->exit_is_num(0); $cmd->stdout_is_eq("Enough hosts reachable (required: 1, reachable: 1)\n"); $cmd->stderr_is_eq(""); } - -# fping -X -{ -my $cmd = Test::Command->new(cmd => "fping -X 2 --generate 8.8.0.0/29"); -$cmd->exit_is_num(1); -$cmd->stdout_is_eq("Not enough hosts reachable (required: 2, reachable: 0)\n"); -$cmd->stderr_is_eq(""); -}