From: Nicholas Clark Date: Wed, 9 Jan 2002 17:56:04 +0000 (+0000) Subject: op/readdir.t (was Re: perl@14152) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c19e406d5e8b2d85346a6af09d86280d24d8e49b;p=p5sagit%2Fp5-mst-13.2.git op/readdir.t (was Re: perl@14152) Message-ID: <20020109175604.H354@Bagpuss.unfortu.net> p4raw-id: //depot/perl@14154 --- diff --git a/t/op/readdir.t b/t/op/readdir.t index 39d4e4c..7cfecdb 100755 --- a/t/op/readdir.t +++ b/t/op/readdir.t @@ -24,7 +24,12 @@ closedir(OP); ## This range will have to adjust as the number of tests expands, ## as it's counting the number of .t files in src/t ## -if (@D > 100 && @D < 120) { print "ok 2\n"; } else { print "not ok 2\n"; } +my ($min, $max) = (115, 135); +if (@D > $min && @D < $max) { print "ok 2\n"; } +else { + printf "not ok 2 # counting op/*.t, expect $min < %d < $max files\n", + scalar @D; +} @R = sort @D; @G = sort ;