From a21fa3b025feb558a9279178ad69b68bd03ace56 Mon Sep 17 00:00:00 2001 From: "Jerry D. Hedden" Date: Tue, 30 Nov 2010 18:22:35 -0500 Subject: [PATCH] Skip t/io/eintr.t on Cygwin, too - hangs --- t/io/eintr.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/io/eintr.t b/t/io/eintr.t index 73eddeb..a1d9966 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; } -- 2.7.4