diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-11-09 18:17:07 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-11-09 18:17:07 +0000 |
commit | 1d7a7f6e08569eb13844cd5993e89de940bb3298 (patch) | |
tree | fffe388c5d3e3580dfcdc75b1f5d5bbb9acc2fec /ext | |
parent | a84e44cddbc22ba5018278af86e57a36c53e4042 (diff) | |
download | perl-1d7a7f6e08569eb13844cd5993e89de940bb3298.tar.gz |
Adjust test count for non-windows machines
p4raw-id: //depot/perl@23490
Diffstat (limited to 'ext')
-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"; |