summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-11-09 18:17:07 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-11-09 18:17:07 +0000
commit1d7a7f6e08569eb13844cd5993e89de940bb3298 (patch)
treefffe388c5d3e3580dfcdc75b1f5d5bbb9acc2fec /ext
parenta84e44cddbc22ba5018278af86e57a36c53e4042 (diff)
downloadperl-1d7a7f6e08569eb13844cd5993e89de940bb3298.tar.gz
Adjust test count for non-windows machines
p4raw-id: //depot/perl@23490
Diffstat (limited to 'ext')
-rwxr-xr-xext/IO/t/io_file.t2
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";