diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-02-17 16:13:05 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-02-17 18:20:45 +0100 |
commit | cc306f49b716cd9f181131469cfe6390b22f1e55 (patch) | |
tree | 4eec2a13e5422281c6c7558e86de7f9e53737faa /t | |
parent | 5e778b6bfdda983ba0861e44982aff56ecc05da5 (diff) | |
download | perl-cc306f49b716cd9f181131469cfe6390b22f1e55.tar.gz |
For make test, move the 'porting' tests before 'lib', 'ext', 'dist' & 'cpan'
This makes the order more consistent with test_harness, and moves the
"interesting" tests earlier. "interesting", in that these are more likely
to spot unexpected problems with the tested changes.
Diffstat (limited to 't')
-rwxr-xr-x | t/TEST | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -428,7 +428,10 @@ unless (@ARGV) { foreach my $dir (qw(base comp run cmd io re op uni mro)) { _find_tests($dir); } - _find_tests("lib") unless $::core; + unless ($::core) { + _find_tests('porting'); + _find_tests("lib"); + } # Config.pm may be broken for make minitest. And this is only a refinement # for skipping tests on non-default builds, so it is allowed to fail. # What we want to to is make a list of extensions which we did not build. @@ -458,7 +461,6 @@ unless (@ARGV) { push @ARGV, _tests_from_manifest($extensions, $known_extensions); unless ($::core) { _find_tests('x2p'); - _find_tests('porting'); _find_tests('japh') if $::torture; _find_tests('t/benchmark') if $::benchmark or $ENV{PERL_BENCHMARK}; } |