Skip t/io/eintr.t on Cygwin, too - hangs
authorJerry D. Hedden <jdhedden@cpan.org>
Tue, 30 Nov 2010 23:22:35 +0000 (18:22 -0500)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 1 Dec 2010 00:27:14 +0000 (16:27 -0800)
t/io/eintr.t

index 73eddeb..a1d9966 100644 (file)
@@ -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;
 }