diff options
author | David Mitchell <davem@iabyn.com> | 2010-11-28 18:33:51 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-11-28 18:33:51 +0000 |
commit | cebd6690fcb4065e29e98a0861af011572e0e730 (patch) | |
tree | bb7d4958c26f252d8bd4b0909f5f127242843656 | |
parent | fbcaf61123069fe46010699dd41ca5f60f448361 (diff) | |
download | perl-cebd6690fcb4065e29e98a0861af011572e0e730.tar.gz |
disable t/io/eintr.t on windows
Apperently it's causing smokers to hang, so skip until
I find out what's happening.
-rw-r--r-- | t/io/eintr.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/io/eintr.t b/t/io/eintr.t index 28983c3d02..e985a83ac8 100644 --- a/t/io/eintr.t +++ b/t/io/eintr.t @@ -40,7 +40,7 @@ if (exists $ENV{PERLIO} && $ENV{PERLIO} =~ /stdio/ ) { exit 0; } -if ($^O eq 'VMS') { +if ($^O eq 'VMS' || $^O eq 'MSWin32') { skip_all('various portability issues'); exit 0; } |