From: Jeremy Harris Date: Sun, 6 Oct 2019 19:48:28 +0000 (+0100) Subject: Testsuite: interface number is optional X-Git-Tag: exim-4.93-RC0~19 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=047d749f00f74798bc984d28602fae37dd957760;p=user%2Fhenk%2Fcode%2Fexim.git Testsuite: interface number is optional --- diff --git a/test/runtest b/test/runtest index 558fcf661..ad3a74da8 100755 --- a/test/runtest +++ b/test/runtest @@ -3406,7 +3406,7 @@ open(IFCONFIG, '-|', (grep { -x "$_/ip" } split /:/, $ENV{PATH}) ? 'ip address' or die "** Cannot run 'ip address' or 'ifconfig -a'\n"; while (not ($parm_ipv4 and $parm_ipv6) and defined($_ = )) { - if (/^(?:[0-9]+: )([^:]+): /) { $ifname = $1; } + if (/^(?:[0-9]+: )?([^:]+): /) { $ifname = $1; } if (not $parm_ipv4 and /^\s*inet(?:\saddr)?:?\s?(\d+\.\d+\.\d+\.\d+)(?:\/\d+)?\s/i) {