projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
a84e44c
)
Adjust test count for non-windows machines
Rafael Garcia-Suarez [Tue, 9 Nov 2004 18:17:07 +0000 (18:17 +0000)]
p4raw-id: //depot/perl@23490
ext/IO/t/io_file.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/IO/t/io_file.t
b/ext/IO/t/io_file.t
index
a2e608a
..
22d177e
100755
(executable)
--- 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";