This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9eed50d
)
document why eintr.t needs to be skipped on Win32
author
David Mitchell
<davem@iabyn.com>
Mon, 29 Nov 2010 11:23:28 +0000
(11:23 +0000)
committer
David Mitchell
<davem@iabyn.com>
Mon, 29 Nov 2010 11:23:28 +0000
(11:23 +0000)
t/io/eintr.t
patch
|
blob
|
blame
|
history
diff --git
a/t/io/eintr.t
b/t/io/eintr.t
index
e985a83
..
73eddeb
100644
(file)
--- a/
t/io/eintr.t
+++ b/
t/io/eintr.t
@@
-40,6
+40,9
@@
if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/ ) {
exit 0;
}
+# on Win32, alarm() won't interrupt the read/write call.
+# Similar issues with VMS.
+
if ($^O eq 'VMS' || $^O eq 'MSWin32') {
skip_all('various portability issues');
exit 0;