projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
218ab4d
)
UNICOS and UNICOS/mk are broken only on one test.
Jarkko Hietaniemi [Fri, 14 Jun 2002 10:39:04 +0000 (10:39 +0000)]
p4raw-id: //depot/perl@17230
ext/Socket/socketpair.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/Socket/socketpair.t
b/ext/Socket/socketpair.t
index
f9d6ee6
..
3349f0f
100644
(file)
--- a/
ext/Socket/socketpair.t
+++ b/
ext/Socket/socketpair.t
@@
-117,11
+117,12
@@
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 'super-ux' ||
- $^O eq 'unicos' || $^O eq 'unicosmk';
+ if $^O eq 'hpux' || $^O eq 'super-ux';
alarm 3;
$! = 0;
ok (eof RIGHT, "right is at EOF");
+ local $TODO = "Known problems with unix sockets on $^O"
+ if $^O eq 'unicos' || $^O eq 'unicosmk';
is ($!, '', 'and $! should report no error');
alarm 60;
}