diff options
-rwxr-xr-x | ext/IO/t/io_file.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/IO/t/io_file.t b/ext/IO/t/io_file.t index a2e608ab7c..22d177ee18 100755 --- a/ext/IO/t/io_file.t +++ b/ext/IO/t/io_file.t @@ -4,7 +4,7 @@ BEGIN { chdir 't' if -d 't'; } use strict; use lib '../lib'; -use Test::More tests => 9; +use Test::More tests => ($^O =~ /MSWin32/ ? 9 : 6); my $Class = 'IO::File'; my $All_Chars = join '', "\r\n", map( chr, 1..255 ), "zzz\n\r"; |