From: Rafael Garcia-Suarez Date: Tue, 9 Nov 2004 18:17:07 +0000 (+0000) Subject: Adjust test count for non-windows machines X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1d7a7f6e08569eb13844cd5993e89de940bb3298;p=p5sagit%2Fp5-mst-13.2.git Adjust test count for non-windows machines p4raw-id: //depot/perl@23490 --- diff --git a/ext/IO/t/io_file.t b/ext/IO/t/io_file.t index a2e608a..22d177e 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";