From: Jarkko Hietaniemi Date: Thu, 11 Apr 2002 14:42:06 +0000 (+0000) Subject: Also NEC SUPER-UX has buggy sockpair(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0b27c29c2324971904f404674827f716bba50b8e;p=p5sagit%2Fp5-mst-13.2.git Also NEC SUPER-UX has buggy sockpair(). p4raw-id: //depot/perl@15862 --- diff --git a/ext/Socket/socketpair.t b/ext/Socket/socketpair.t index 79dfb63..09ee067 100644 --- a/ext/Socket/socketpair.t +++ b/ext/Socket/socketpair.t @@ -117,7 +117,7 @@ ok (shutdown(LEFT, SHUT_WR), "shutdown left for writing"); { local $SIG{ALRM} = sub { warn "EOF on right took over 3 seconds" }; local $TODO = "Known problems with unix sockets on $^O" - if $^O eq 'hpux' || $^O eq 'unicosmk'; + if $^O eq 'hpux' || $^O eq 'unicosmk' || $^O eq 'super-ux'; alarm 3; $! = 0; ok (eof RIGHT, "right is at EOF");