summaryrefslogtreecommitdiff
path: root/lib/Net
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-03-30 09:09:42 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-03-30 09:09:42 +0000
commit64971c1d302660727458d7d7a85adcd36226e1aa (patch)
treeaab28c712443eb4411979bbb6d97e6ec265bf424 /lib/Net
parente0561f8bdb3c55e652ac26501ebb98aed004197e (diff)
downloadperl-64971c1d302660727458d7d7a85adcd36226e1aa.tar.gz
Another victim of IRIX 5.3's inability to resolve 'localhost'
as the test expects. p4raw-id: //depot/perl@19088
Diffstat (limited to 'lib/Net')
-rw-r--r--lib/Net/hostent.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Net/hostent.t b/lib/Net/hostent.t
index 9c6fa1318e..2616b56425 100644
--- a/lib/Net/hostent.t
+++ b/lib/Net/hostent.t
@@ -14,8 +14,8 @@ BEGIN {
{
plan skip_all => "Test uses Socket, Socket not built";
}
- if ($^O eq 'MacOS') {
- plan skip_all => "Test relies on resolution of localhost, fails on Mac OS";
+ if ($^O eq 'MacOS' || ($^O eq 'irix' && $Config{osvers} == 5)) {
+ plan skip_all => "Test relies on resolution of localhost, fails on $^O ($Config{osvers})";
}
}