base first, as TEST bails out if that can't run
then comp, to validate that require works
then run, to validate that -M works
then we know we can -MTestInit for everything else, making life simpler)
}
unless (@ARGV) {
- foreach my $dir (qw(base comp cmd run io op uni mro)) {
+ # base first, as TEST bails out if that can't run
+ # then comp, to validate that require works
+ # then run, to validate that -M works
+ # then we know we can -MTestInit for everything else, making life simpler
+ foreach my $dir (qw(base comp run cmd io op uni mro)) {
_find_tests($dir);
}
_find_tests("lib") unless $::core;
unless (@tests) {
my @seq = <base/*.t>;
- my @next = qw(comp cmd run io op uni mro lib porting);
+ my @next = qw(comp run cmd io op uni mro lib porting);
push @next, 'japh' if $torture;
push @next, 'win32' if $^O eq 'MSWin32';
push @next, 'benchmark' if $ENV{PERL_BENCHMARK};