From: Jarkko Hietaniemi Date: Sat, 5 Jan 2002 17:26:05 +0000 (+0000) Subject: Also UNICOS/mk has deviant socketpair(). X-Git-Tag: perl-5.8.0~2958 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/e03d5f0aff9a5c30ff57a7214ca7032caa8e30ae 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");