summaryrefslogtreecommitdiff
path: root/test/runtest
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-05-19 17:41:35 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2015-05-19 22:30:32 +0100
commitd1139f18482c3d4847e5bb6bf5619f61e03e8c31 (patch)
tree76f2a2f128ac88c2ef92e98a78ff60b9ea2c1d3f /test/runtest
parentb9716b3c5a3992ee5ff0bf38e9182e90dad41b9f (diff)
Testsuite: avoid tryng to run in net 10.
Diffstat (limited to 'test/runtest')
-rwxr-xr-xtest/runtest2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest b/test/runtest
index 70f1d9b4b..157ff050a 100755
--- a/test/runtest
+++ b/test/runtest
@@ -2904,7 +2904,7 @@ while (($parm_ipv4 eq "" || $parm_ipv6 eq "") && ($_ = <IFCONFIG>))
$_ =~ /^\s*inet(?:\saddr)?:?\s?(\d+\.\d+\.\d+\.\d+)\s/i)
{
$ip = $1;
- next if ($ip =~ /^127\./);
+ next if ($ip =~ /^127\./ || $ip =~ /^10\./);
$parm_ipv4 = $ip;
}