summaryrefslogtreecommitdiff
path: root/t/io
diff options
context:
space:
mode:
authorJerry D. Hedden <jdhedden@cpan.org>2010-11-30 18:22:35 -0500
committerFather Chrysostomos <sprout@cpan.org>2010-11-30 16:27:14 -0800
commita21fa3b025feb558a9279178ad69b68bd03ace56 (patch)
tree7eff1ae1fe7fc6fab0ecba8bbad144d5fce5f470 /t/io
parent4aa3a86749acdb989cb33981ae3dd1fde939b66a (diff)
downloadperl-a21fa3b025feb558a9279178ad69b68bd03ace56.tar.gz
Skip t/io/eintr.t on Cygwin, too - hangs
Diffstat (limited to 't/io')
-rw-r--r--t/io/eintr.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/eintr.t b/t/io/eintr.t
index 73eddeb2f5..a1d996675f 100644
--- a/t/io/eintr.t
+++ b/t/io/eintr.t
@@ -43,7 +43,7 @@ if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/ ) {
# on Win32, alarm() won't interrupt the read/write call.
# Similar issues with VMS.
-if ($^O eq 'VMS' || $^O eq 'MSWin32') {
+if ($^O eq 'VMS' || $^O eq 'MSWin32' || $^O eq 'cygwin') {
skip_all('various portability issues');
exit 0;
}