expand the globs when we walk the rules to create the full list of
tests. Tests run more quickly.
p4raw-id: //depot/perl@34177
# Run the tests in each of these directories in sequence, but the
# directories themselves can be parallelised.
foreach (@_) {
- push @dirs, { seq => [ glob "$_/*.t" ] };
+ push @dirs, { seq => "$_/*.t" };
}
{ par => \@dirs };
}
die "Unknown reference type $ref";
}
} else {
- push @results, $_;
+ push @results, glob $_;
}
}
@results;