summaryrefslogtreecommitdiff
path: root/t/op/readdir.t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-08-10 08:38:39 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-08-10 08:38:39 +0000
commit4e34385f1add67f206da4307d1e033b6827d3720 (patch)
tree09e2f407501a318ec16bfdbf3657b9954568b74d /t/op/readdir.t
parent41df20d4b7a079e9d0de0aef397581453ab78eff (diff)
downloadperl-4e34385f1add67f206da4307d1e033b6827d3720.tar.gz
warn is a macro, avoid using at a variable to avoid warnings
in some configurations; readdir.t is too conservative in estimating number of *.t's p4raw-id: //depot/perl@6562
Diffstat (limited to 't/op/readdir.t')
-rwxr-xr-xt/op/readdir.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/readdir.t b/t/op/readdir.t
index d101c2f622..9da560c669 100755
--- a/t/op/readdir.t
+++ b/t/op/readdir.t
@@ -20,7 +20,7 @@ if (opendir(OP, "op")) { print "ok 1\n"; } else { print "not ok 1\n"; }
@D = grep(/^[^\.].*\.t$/i, readdir(OP));
closedir(OP);
-if (@D > 20 && @D < 100) { print "ok 2\n"; } else { print "not ok 2\n"; }
+if (@D > 20 && @D < 150) { print "ok 2\n"; } else { print "not ok 2\n"; }
@R = sort @D;
@G = sort <op/*.t>;