diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-05-05 12:01:51 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-05-05 12:01:51 +0000 |
commit | 43fe08367a10211b912991159b5d14031e223323 (patch) | |
tree | 34eece404c7b83fb0215cc9d6a3d13f25e579538 /t | |
parent | 20f82676dae2202e0976be46e7b4ae6f5671f0e2 (diff) | |
download | perl-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-x | t/TEST | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'; |