This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
podcheck.t: fix up known issues in new perldelta
[perl5.git] / t / harness
index 11c1741..7748c26 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -8,12 +8,11 @@ BEGIN {
     @INC = '../lib';              # pick up only this build's lib
 }
 
-delete $ENV{PERL5LIB};
-
 my $torture; # torture testing?
 
 use TAP::Harness 3.13;
 use strict;
+use Config;
 
 $::do_nothing = $::do_nothing = 1;
 require './TEST';
@@ -111,6 +110,9 @@ if (@ARGV) {
     else {
        @tests = @ARGV;
     }
+    # This is a hack to force config_heavy.pl to be loaded, before the
+    # prep work for running a test changes directory.
+    1 if $Config{d_fork};
 } else {
     # Ideally we'd get somewhere close to Tux's Oslo rules
     # my $rules = {
@@ -129,7 +131,7 @@ if (@ARGV) {
     unless (@tests) {
        my @seq = <base/*.t>;
 
-       my @next = qw(comp run cmd io op uni mro lib porting);
+       my @next = qw(comp run cmd io re op uni mro lib porting);
        push @next, 'japh' if $torture;
        push @next, 'win32' if $^O eq 'MSWin32';
        push @next, 'benchmark' if $ENV{PERL_BENCHMARK};
@@ -159,10 +161,8 @@ if (@ARGV) {
        push @seq, $next;
 
        my @last;
-       use Config;
        push @last,  sort { lc $a cmp lc $b }
            _tests_from_manifest($Config{extensions}, $Config{known_extensions});
-       push @last, <pod/*.t>;
        push @last, <x2p/*.t>;
 
        my %times;
@@ -180,7 +180,8 @@ if (@ARGV) {
            if ($^O eq 'MSWin32') {
                s,\\,/,g; # canonicalize path
            };
-           m!(.*[/])! or die "'$_'";
+           # Treat every file matching lib/*.t as a "directory"
+           m!\A(\.\./lib/[^/]+\.t\z|.*[/])! or die "'$_'";
            push @{$dir{$1}}, $_;
            $total_time{$1} += $times{$_} || 0;
        }
@@ -189,7 +190,7 @@ if (@ARGV) {
 
        # Generate T::H schedule rules that run the contents of each directory
        # sequentially.
-       push @seq, { par => [ map { { seq => "$_*" } } sort {
+       push @seq, { par => [ map { s!/$!/*!; { seq => $_ } } sort {
            # Directories, ordered by total time descending then name ascending
            $total_time{$b} <=> $total_time{$a} || $a cmp $b
        } keys %dir ] };
@@ -203,11 +204,29 @@ if ($^O eq 'MSWin32') {
 @tests=grep /$re/, @tests 
     if $re;
 
+my %options;
+
+my $type = 'perl';
+
+# Load TAP::Parser now as otherwise it could be required in the short time span
+# in which the harness process chdirs into ext/Dist
+require TAP::Parser;
+
 my $h = TAP::Harness->new({
     rules       => $rules,
     color       => $color,
     jobs        => $jobs,
     verbosity   => $Verbose,
+    exec        => sub {
+       my ($harness, $test) = @_;
+
+       my $options = $options{$test};
+       if (!defined $options) {
+           $options = $options{$test} = _scan_test($test, $type);
+       }
+
+       return [ split ' ', _cmd($options, $type) ];
+    },
 });
 
 if ($state) {
@@ -225,9 +244,21 @@ if ($state) {
 
 $h->callback(
             parser_args => sub {
-                my ( $args, $test ) = @_;
-                push @{ $args->{switches} }, '-I../lib';
+                my ($args, $job) = @_;
+                my $test = $job->[0];
+                _before_fork($options{$test});
+                push @{ $args->{switches} }, "-I../../lib";
+            }
+            );
+
+$h->callback(
+            made_parser => sub {
+                my ($parser, $job) = @_;
+                my $test = $job->[0];
+                my $options = delete $options{$test};
+                _after_fork($options);
             }
             );
-$h->runtests(@tests);
-exit(0);
+
+my $agg = $h->runtests(@tests);
+exit $agg->has_errors ? 1 : 0;