From: German Service Network Date: Thu, 18 Dec 2025 09:01:22 +0000 (+0100) Subject: ci: Fix test unkown host X-Git-Tag: v5.5~23 X-Git-Url: https://git.gsnw.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3888cd74daf02fa57314632b6ebe8fdbdbe63d00;p=fping.git ci: Fix test unkown host --- diff --git a/ci/test-13-unknown-host.pl b/ci/test-13-unknown-host.pl index 65c8312..229c4e0 100755 --- a/ci/test-13-unknown-host.pl +++ b/ci/test-13-unknown-host.pl @@ -7,5 +7,5 @@ use Test::Command tests => 3; my $cmd = Test::Command->new(cmd => "fping nosuchname.example.com"); $cmd->exit_is_num(2); $cmd->stdout_is_eq(""); -$cmd->stderr_like(qr{^nosuchname\.example\.com: .*not (known|found)}); +$cmd->stderr_like(qr{^nosuchname\.example\.com: (.*not (known|found)|No address associated with hostname)}); }