X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=test%2Fruntest;h=8dca8316bc368dc882cdf904cf72fe073a954d2e;hp=7fe0e5daefdcf0397cb17e54100114aed9eb14fb;hb=bb660b564b18e962c4f7221075b5e556d4dc4360;hpb=8b0fb68e04323248df1208516e8a9293af9859d8 diff --git a/test/runtest b/test/runtest index 7fe0e5dae..8dca8316b 100755 --- a/test/runtest +++ b/test/runtest @@ -3039,9 +3039,8 @@ else # Find this host's IP addresses - there may be many, of course, but we keep # one of each type (IPv4 and IPv6). -open(IFCONFIG, 'ip address|') # show *all*, addresses w/o label - or open(IFCONFIG, 'ifconfig -a|') # probably skips addresses w/o label - or die "** Cannot run 'ifconfig' or 'ip address': $!\n"; +open(IFCONFIG, '-|', (grep { -x "$_/ip" } split /:/, $ENV{PATH}) ? 'ip address' : 'ifconfig -a') + or die "** Cannot run 'ip address' or 'ifconfig -a'\n"; 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)