the subtest 44 of t/strap.t started failing.
p4raw-id: //depot/perl@16830
if( my($max, $extra) = $line =~ /^1\.\.(\d+)(.*)/ ) {
$self->{max} = $max;
assert( $self->{max} >= 0, 'Max # of tests looks right' );
-
- if( not $max and not $extra) {
- #We're skipping, thats for sure
- $self->{skip_all} = 'no reason given';
- }
- elsif( defined $extra ) {
+ if( defined $extra ) {
my($todo, $skip, $reason) = $extra =~ /$Extra_Header_Re/xo;
$self->{todo} = { map { $_ => 1 } split /\s+/, $todo } if $todo;