summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-05-05 12:01:51 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-05-05 12:01:51 +0000
commit43fe08367a10211b912991159b5d14031e223323 (patch)
tree34eece404c7b83fb0215cc9d6a3d13f25e579538 /t
parent20f82676dae2202e0976be46e7b4ae6f5671f0e2 (diff)
downloadperl-43fe08367a10211b912991159b5d14031e223323.tar.gz
strictifying t/TEST stopped it handling '1..n todo' correctly
(made scope of %toto too narrow) p4raw-id: //depot/perl@24392
Diffstat (limited to 't')
-rwxr-xr-xt/TEST2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/TEST b/t/TEST
index 88e40fde2c..15c6da9c15 100755
--- a/t/TEST
+++ b/t/TEST
@@ -410,13 +410,13 @@ EOT
my $seen_ok = 0;
my $trailing_leader = 0;
my $max;
+ my %todo;
while (<RESULTS>) {
next if /^\s*$/; # skip blank lines
if ($::verbose) {
print $_;
}
unless (/^\#/) {
- my %todo;
if ($trailing_leader) {
# shouldn't be anything following a postfix 1..n
$failure = 'extra output after trailing 1..n';