From: Jarkko Hietaniemi Date: Sat, 5 Jan 2002 17:26:05 +0000 (+0000) Subject: Also UNICOS/mk has deviant socketpair(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e03d5f0aff9a5c30ff57a7214ca7032caa8e30ae;p=p5sagit%2Fp5-mst-13.2.git Also UNICOS/mk has deviant socketpair(). p4raw-id: //depot/perl@14092 --- diff --git a/ext/Socket/socketpair.t b/ext/Socket/socketpair.t index c3a548c..3e822c3 100644 --- a/ext/Socket/socketpair.t +++ b/ext/Socket/socketpair.t @@ -98,7 +98,8 @@ ok (shutdown(LEFT, SHUT_WR), "shutdown left for writing"); # Calls. Hence the child process minder. { 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'; + local $TODO = "Known problems with unix sockets on $^O" + if $^O eq 'hpux' || $^O eq 'unicosmk'; alarm 3; $! = 0; ok (eof RIGHT, "right is at EOF");