diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-08-25 10:38:41 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-08-25 10:38:41 +0100 |
commit | 03d95bfa21cfb6c69eff384ee082239e765af8f1 (patch) | |
tree | 92ea942f6dd2ee22e6b0a303dd440c333fe0725b /t/harness | |
parent | 7ebf5c89e8918d77e1798303430ceccf36c34949 (diff) | |
download | perl-03d95bfa21cfb6c69eff384ee082239e765af8f1.tar.gz |
Run t/run/*.t before t/cmd/*.t, making the order base, cmd, run, and note why.
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)
Diffstat (limited to 't/harness')
-rw-r--r-- | t/harness | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ if (@ARGV) { 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}; |