document why eintr.t needs to be skipped on Win32
authorDavid Mitchell <davem@iabyn.com>
Mon, 29 Nov 2010 11:23:28 +0000 (11:23 +0000)
committerDavid Mitchell <davem@iabyn.com>
Mon, 29 Nov 2010 11:23:28 +0000 (11:23 +0000)
t/io/eintr.t

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