X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/cdc7f9a9667ecf31d803fc8d1a31b466284360bd..bcbca153505de435c881e71297fde83c3ac02cc1:/test/runtest diff --git a/test/runtest b/test/runtest index 62b242903..27cbeaa00 100755 --- a/test/runtest +++ b/test/runtest @@ -3318,6 +3318,7 @@ else # Find this host's IP addresses - there may be many, of course, but we keep # one of each type (IPv4 and IPv6). +#XXX it would be good to avoid non-UP interfaces open(IFCONFIG, '-|', (grep { -x "$_/ip" } split /:/, $ENV{PATH}) ? 'ip address' : 'ifconfig -a') or die "** Cannot run 'ip address' or 'ifconfig -a'\n"; @@ -3325,7 +3326,8 @@ while (not ($parm_ipv4 and $parm_ipv6) and defined($_ = )) { if (not $parm_ipv4 and /^\s*inet(?:\saddr)?:?\s?(\d+\.\d+\.\d+\.\d+)(?:\/\d+)?\s/i) { - next if $1 =~ /^(?:127|10)\./; + next if $1 =~ /^(?:127|10\.250)\./; + next if $1 eq '0.0.0.0'; $parm_ipv4 = $1; }