From: Jarkko Hietaniemi Date: Sun, 30 Mar 2003 09:09:42 +0000 (+0000) Subject: Another victim of IRIX 5.3's inability to resolve 'localhost' X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=64971c1d302660727458d7d7a85adcd36226e1aa;p=p5sagit%2Fp5-mst-13.2.git Another victim of IRIX 5.3's inability to resolve 'localhost' as the test expects. p4raw-id: //depot/perl@19088 --- diff --git a/lib/Net/hostent.t b/lib/Net/hostent.t index 9c6fa13..2616b56 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})"; } }