summaryrefslogtreecommitdiff
path: root/t/harness
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-08-25 10:38:41 +0100
committerNicholas Clark <nick@ccl4.org>2009-08-25 10:38:41 +0100
commit03d95bfa21cfb6c69eff384ee082239e765af8f1 (patch)
tree92ea942f6dd2ee22e6b0a303dd440c333fe0725b /t/harness
parent7ebf5c89e8918d77e1798303430ceccf36c34949 (diff)
downloadperl-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/harness2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/harness b/t/harness
index 1eb85f1b83..9ea16a560c 100644
--- a/t/harness
+++ b/t/harness
@@ -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};