This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp.c: pp_substr for UTF-8 globs.
[perl5.git] / t / TEST
diff --git a/t/TEST b/t/TEST
index 0231332..a57261c 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -23,33 +23,81 @@ my %dir_to_switch =
      '../ext/File-Glob/t' => '-I.. -MTestInit', # FIXME - tests assume t/
      );
 
+# "not absolute" is the the default, as it saves some fakery within TestInit
+# which can peturb tests, and takes CPU. Working with the upstream author of
+# any of these, to figure out how to remove them from this list, considered
+# "a good thing".
+my %abs = (
+          '../cpan/Archive-Extract' => 1,
+          '../cpan/Archive-Tar' => 1,
+          '../cpan/AutoLoader' => 1,
+          '../cpan/CPAN' => 1,
+          '../cpan/Class-ISA' => 1,
+          '../cpan/Devel-PPPort' => 1,
+          '../cpan/Encode' => 1,
+          '../cpan/ExtUtils-Constant' => 1,
+          '../cpan/ExtUtils-MakeMaker' => 1,
+          '../cpan/File-Fetch' => 1,
+          '../cpan/IPC-Cmd' => 1,
+          '../cpan/IPC-SysV' => 1,
+          '../cpan/Locale-Codes' => 1,
+          '../cpan/Log-Message' => 1,
+          '../cpan/Module-Build' => 1,
+          '../cpan/Module-Load' => 1,
+          '../cpan/Module-Load-Conditional' => 1,
+          '../cpan/Object-Accessor' => 1,
+          '../cpan/Package-Constants' => 1,
+          '../cpan/Parse-CPAN-Meta' => 1,
+          '../cpan/Pod-Simple' => 1,
+          '../cpan/Term-UI' => 1,
+          '../cpan/Test-Simple' => 1,
+          '../cpan/Tie-File' => 1,
+          '../cpan/podlators' => 1,
+          '../dist/Cwd' => 1,
+          '../dist/ExtUtils-Command' => 1,
+          '../dist/ExtUtils-Install' => 1,
+          '../dist/ExtUtils-Manifest' => 1,
+          '../dist/ExtUtils-ParseXS' => 1,
+         );
+
 my %temp_no_core =
-    ('../ext/Attribute-Handlers' => 1,
-     '../ext/B' => 'fixme',
-     '../ext/Compress-Raw-Bzip2' => 1,
-     '../ext/Compress-Raw-Zlib' => 1,
-     '../ext/Data-Dumper' => 'fixme',
-     '../ext/Devel-PPPort' => 1,
-     '../ext/DynaLoader' => 'fixme',
-     '../ext/Encode' => 1,
-     '../ext/Hash-Util' => 'fixme',
-     '../ext/Hash-Util-FieldHash' => 'fixme',
-     '../ext/I18N-Langinfo' => 'fixme',
-     '../ext/IO-Compress' => 1,
-     '../ext/IPC-SysV' => 1,
-     '../ext/MIME-Base64' => 1,
-     '../ext/Safe' => 'fixme',
-     '../ext/Storable' => 'fixme',
-     '../ext/Time-HiRes' => 1,
-     '../ext/Unicode-Normalize' => 1,
+    ('../cpan/B-Debug' => 1,
+     '../cpan/Compress-Raw-Bzip2' => 1,
+     '../cpan/Compress-Raw-Zlib' => 1,
+     '../cpan/Devel-PPPort' => 1,
+     '../cpan/Getopt-Long' => 1,
+     '../cpan/IO-Compress' => 1,
+     '../cpan/MIME-Base64' => 1,
+     '../cpan/parent' => 1,
+     '../cpan/Parse-CPAN-Meta' => 1,
+     '../cpan/Pod-Simple' => 1,
+     '../cpan/podlators' => 1,
+     '../cpan/Test-Simple' => 1,
+     '../cpan/Tie-RefHash' => 1,
+     '../cpan/Unicode-Collate' => 1,
+     '../cpan/Unicode-Normalize' => 1,
     );
 
+# delete env vars that may influence the results
+# but allow override via *_TEST env var if wanted
+# (e.g. PERL5OPT_TEST=-d:NYTProf)
+for my $envname (qw(PERL5LIB PERLLIB PERL5OPT)) {
+    my $override = $ENV{"${envname}_TEST"};
+    if (defined $override) {
+       warn "$0: $envname=$override\n";
+       $ENV{$envname} = $override;
+    }
+    else {
+       delete $ENV{$envname};
+    }
+}
+
 if ($::do_nothing) {
     return 1;
 }
 
 # Location to put the Valgrind log.
-my $Valgrind_Log = 'current.valgrind';
+our $Valgrind_Log;
 
 $| = 1;
 
@@ -57,10 +105,6 @@ $| = 1;
 #BEGIN { require '../lib/strict.pm'; "strict"->import() };
 #BEGIN { require '../lib/warnings.pm'; "warnings"->import() };
 
-delete $ENV{PERL5LIB};
-delete $ENV{PERLLIB};
-delete $ENV{PERL5OPT};
-
 # remove empty elements due to insertion of empty symbols via "''p1'" syntax
 @ARGV = grep($_,@ARGV) if $^O eq 'VMS';
 our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
@@ -78,7 +122,6 @@ our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
        $::with_utf8 = 1 if $1 eq 'utf8';
        $::with_utf16 = 1 if $1 eq 'utf16';
        $::taintwarn = 1 if $1 eq 'taintwarn';
-       $ENV{PERL_CORE_MINITEST} = 1 if $1 eq 'minitest';
        if ($1 =~ /^deparse(,.+)?$/) {
            $::deparse = 1;
            $::deparse_opts = $1;
@@ -88,6 +131,9 @@ our $show_elapsed_time = $ENV{HARNESS_TIMER} || 0;
 }
 
 chdir 't' if -f 't/TEST';
+if (-f 'TEST' && -f 'harness' && -d '../lib') {
+    @INC = '../lib';
+}
 
 die "You need to run \"make test\" first to set things up.\n"
   unless -e 'perl' or -e 'perl.exe' or -e 'perl.pm';
@@ -113,6 +159,7 @@ $ENV{PERL_DESTRUCT_LEVEL} = 2 unless exists $ENV{PERL_DESTRUCT_LEVEL};
 $ENV{EMXSHELL} = 'sh';        # For OS/2
 
 if ($show_elapsed_time) { require Time::HiRes }
+my %timings = (); # testname => [@et] pairs if $show_elapsed_time.
 
 my %skip = (
            '.' => 1,
@@ -124,20 +171,24 @@ my %skip = (
           );
 
 # Roll your own File::Find!
-sub _find_tests {
-    my($dir) = @_;
-    opendir DIR, $dir or die "Trouble opening $dir: $!";
-    foreach my $f (sort { $a cmp $b } readdir DIR) {
-       next if $skip{$f};
-
-       my $fullpath = "$dir/$f";
-
-       if (-d $fullpath) {
-           _find_tests($fullpath);
-       } elsif ($f =~ /\.t$/) {
-           push @ARGV, $fullpath;
+sub _find_tests { our @found=(); push @ARGV, _find_files('\.t$', $_[0]) }
+sub _find_files {
+    my($patt, @dirs) = @_;
+    for my $dir (@dirs) {
+       opendir DIR, $dir or die "Trouble opening $dir: $!";
+       foreach my $f (sort { $a cmp $b } readdir DIR) {
+           next if $skip{$f};
+
+           my $fullpath = "$dir/$f";
+           
+           if (-d $fullpath) {
+               _find_files($patt, $fullpath);
+           } elsif ($f =~ /$patt/) {
+               push @found, $fullpath;
+           }
        }
     }
+    @found;
 }
 
 
@@ -153,11 +204,11 @@ sub _scan_test {
 
     my $switch = "";
     if ($first_line =~ /#!.*\bperl.*\s-\w*([tT])/) {
-        $switch = qq{"-$1"};
+        $switch = "-$1";
     } else {
         if ($::taintwarn) {
             # not all tests are expected to pass with this option
-            $switch = '"-t"';
+            $switch = '-t';
         } else {
             $switch = '';
         }
@@ -167,82 +218,140 @@ sub _scan_test {
     if ($type eq 'deparse') {
         # Look for #line directives which change the filename
         while (<$script>) {
-            $file_opts .= ",-f$3$4"
+            $file_opts = $file_opts . ",-f$3$4"
               if /^#\s*line\s+(\d+)\s+((\w+)|"([^"]+)")/;
         }
     }
 
-    return { file => $file_opts, switch => $switch };
-}
-                 
-sub _run_test {
-    my($harness, $test, $type) = @_;
-    if (!defined $type) {
-       # To conform to the interface expected by exec in TAP::Harness
-       $type = 'perl';
-    }
-
-    my $options = _scan_test($test, $type);
-    my $return_dir;
+    close $script;
 
     my $perl = './perl';
     my $lib  = '../lib';
+    my $run_dir;
+    my $return_dir;
+
     $test =~ /^(.+)\/[^\/]+/;
     my $dir = $1;
-    my $ext_dir;
-
     my $testswitch = $dir_to_switch{$dir};
     if (!defined $testswitch) {
-       if ($test =~ s!^(\.\./ext/[^/]+)/t!t!) {
-           $ext_dir = $1;
+       if ($test =~ s!^(\.\./(cpan|dist|ext)/[^/]+)/t!t!) {
+           $run_dir = $1;
            $return_dir = '../../t';
            $lib = '../../lib';
            $perl = '../../t/perl';
-           $testswitch = "-I../.. -MTestInit=U2T,A";
-           if ($temp_no_core{$ext_dir}) {
-               $testswitch = $testswitch . ',NC';
+           $testswitch = "-I../.. -MTestInit=U2T";
+           if ($2 eq 'cpan' || $2 eq 'dist') {
+               if($abs{$run_dir}) {
+                   $testswitch = $testswitch . ',A';
+               }
+               if ($temp_no_core{$run_dir}) {
+                   $testswitch = $testswitch . ',NC';
+               }
            }
-           chdir $ext_dir or die "Can't chdir to '$ext_dir': $!";
+       } elsif ($test =~ m!^\.\./lib!) {
+           $testswitch = '-I.. -MTestInit=U1'; # -T will remove . from @INC
        } else {
            $testswitch = '-I.. -MTestInit';  # -T will remove . from @INC
        }
     }
 
-    my $utf8 = $::with_utf8 ? '-I$lib -Mutf8' : '';
+    my $utf8 = ($::with_utf8 || $::with_utf16) ? "-I$lib -Mutf8" : '';
+
+    my %options = (
+       perl => $perl,
+       lib => $lib,
+       test => $test,
+       run_dir => $run_dir,
+       return_dir => $return_dir,
+       testswitch => $testswitch,
+       utf8 => $utf8,
+       file => $file_opts,
+       switch => $switch,
+    );
 
-    my $results;
+    return \%options;
+}
+
+sub _cmd {
+    my($options, $type) = @_;
+
+    my $test = $options->{test};
+
+    my $cmd;
     if ($type eq 'deparse') {
-        my $deparse_cmd =
-          "$perl $testswitch $options->{switch} -I$lib -MO=-qq,Deparse,-sv1.,".
+        my $perl = "$options->{perl} $options->{testswitch}";
+        my $lib = $options->{lib};
+
+        $cmd = (
+          "$perl $options->{switch} -I$lib -MO=-qq,Deparse,-sv1.,".
           "-l$::deparse_opts$options->{file} ".
           "$test > $test.dp ".
-          "&& $perl $testswitch $options->{switch} -I$lib $test.dp |";
-        open($results, $deparse_cmd)
-          or print "can't deparse '$deparse_cmd': $!.\n";
+          "&& $perl $options->{switch} -I$lib $test.dp"
+        );
     }
     elsif ($type eq 'perl') {
+        my $perl = $options->{perl};
         my $redir = $^O eq 'VMS' ? '2>&1' : '';
 
         if ($ENV{PERL_VALGRIND}) {
-            my $valgrind = $ENV{VALGRIND} // 'valgrind';
+            my $perl_supp = $options->{return_dir} ? "$options->{return_dir}/perl.supp" : "perl.supp";
+            my $valgrind_exe = $ENV{VALGRIND} // 'valgrind';
             my $vg_opts = $ENV{VG_OPTS}
-              //  "--suppressions=perl.supp --leak-check=yes "
-                . "--leak-resolution=high --show-reachable=yes "
-                  . "--num-callers=50"; 
-            $perl = "$valgrind --log-fd=3 $vg_opts $perl";
+              // '--log-fd=3 '
+                 . "--suppressions=$perl_supp --leak-check=yes "
+                 . "--leak-resolution=high --show-reachable=yes "
+                  . "--num-callers=50 --track-origins=yes";
+            $perl = "$valgrind_exe $vg_opts $perl";
             $redir = "3>$Valgrind_Log";
+            if ($options->{run_dir}) {
+                $Valgrind_Log = "$options->{run_dir}/$Valgrind_Log";
+            }
         }
 
-        my $run = $perl . _quote_args("$testswitch $options->{switch} $utf8")
-          . " $test $redir|";
-        open($results, $run) or print "can't run '$run': $!.\n";
+        my $args = "$options->{testswitch} $options->{switch} $options->{utf8}";
+        $cmd = $perl . _quote_args($args) . " $test $redir";
+    }
+    return $cmd;
+}
+
+sub _before_fork {
+    my ($options) = @_;
+
+    if ($options->{run_dir}) {
+       my $run_dir = $options->{run_dir};
+       chdir $run_dir or die "Can't chdir to '$run_dir': $!";
     }
 
-    if ($return_dir) {
+    return;
+}
+
+sub _after_fork {
+    my ($options) = @_;
+
+    if ($options->{return_dir}) {
+       my $return_dir = $options->{return_dir};
        chdir $return_dir
-           or die "Can't chdir from '$ext_dir' to '$return_dir': $!";
+          or die "Can't chdir from '$options->{run_dir}' to '$return_dir': $!";
     }
 
+    return;
+}
+
+sub _run_test {
+    my ($test, $type) = @_;
+
+    my $options = _scan_test($test, $type);
+    # $test might have changed if we're in ext/Foo, so don't use it anymore
+    # from now on. Use $options->{test} instead.
+
+    _before_fork($options);
+
+    my $cmd = _cmd($options, $type);
+
+    open(my $results, "$cmd |") or print "can't run '$cmd': $!.\n";
+
+    _after_fork($options);
+
     # Our environment may force us to use UTF-8, but we can't be sure that
     # anything we're reading from will be generating (well formed) UTF-8
     # This may not be the best way - possibly we should unset ${^OPEN} up
@@ -260,7 +369,7 @@ sub _quote_args {
        # In VMS protect with doublequotes because otherwise
        # DCL will lowercase -- unless already doublequoted.
        $_ = q(").$_.q(") if ($^O eq 'VMS') && !/^\"/ && length($_) > 0;
-       $argstring .= ' ' . $_;
+       $argstring = $argstring . ' ' . $_;
     }
     return $argstring;
 }
@@ -277,19 +386,19 @@ sub _tests_from_manifest {
     my %known_extensions = _populate_hash($known_extensions);
 
     foreach (keys %known_extensions) {
-       $skip{$_}++ unless $extensions{$_};
+       $skip{$_} = 1 unless $extensions{$_};
     }
 
     my @results;
     my $mani = '../MANIFEST';
     if (open(MANI, $mani)) {
        while (<MANI>) {
-           if (m!^(ext/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
+           if (m!^((?:cpan|dist|ext)/(\S+)/+(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
                my $t = $1;
                my $extension = $2;
                if (!$::core || $t =~ m!^lib/[a-z]!) {
                    if (defined $extension) {
-                       $extension =~ s!/t$!!;
+                       $extension =~ s!/t(:?/\S+)*$!!;
                        # XXX Do I want to warn that I'm skipping these?
                        next if $skip{$extension};
                        my $flat_extension = $extension;
@@ -314,7 +423,7 @@ unless (@ARGV) {
     # 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)) {
+    foreach my $dir (qw(base comp run cmd io re op uni mro)) {
        _find_tests($dir);
     }
     _find_tests("lib") unless $::core;
@@ -346,7 +455,6 @@ unless (@ARGV) {
     # something is that badly wrong.
     push @ARGV, _tests_from_manifest($extensions, $known_extensions);
     unless ($::core) {
-       _find_tests('pod');
        _find_tests('x2p');
        _find_tests('porting');
        _find_tests('japh') if $::torture;
@@ -406,22 +514,33 @@ EOT
     }
     my $maxlen = 0;
     foreach (@::path_to_name{@tests}) {
-       s/\.\w+\z/./;
+       s/\.\w+\z/ /; # space gives easy doubleclick to select fname
        my $len = length ;
        $maxlen = $len if $len > $maxlen;
     }
     # + 3 : we want three dots between the test name and the "ok"
     my $dotdotdot = $maxlen + 3 ;
-    my $valgrind = 0;
+    my $grind_ct = 0;          # count of non-empty valgrind reports
     my $total_files = @tests;
     my $good_files = 0;
     my $tested_files  = 0;
     my $totmax = 0;
     my %failed_tests;
+    my $toolnm;                # valgrind, cachegrind, perf
 
     while (my $test = shift @tests) {
-        my $test_start_time = $show_elapsed_time ? Time::HiRes::time() : 0;
-
+        my ($test_start_time, @starttimes) = 0;
+       if ($show_elapsed_time) {
+           $test_start_time = Time::HiRes::time();
+           # times() reports usage by TEST, but we want usage of each
+           # testprog it calls, so record accumulated times now,
+           # subtract them out afterwards.  Ideally, we'd take times
+           # in BEGIN/END blocks (giving better visibility of self vs
+           # children of each testprog), but that would require some
+           # IPC to send results back here, or a completely different
+           # collection scheme (Storable isnt tuned for incremental use)
+           @starttimes = times;
+       }
        if ($test =~ /^$/) {
            next;
        }
@@ -436,14 +555,15 @@ EOT
            }
        }
        my $te = $::path_to_name{$test} . '.'
-                   x ($dotdotdot - length($::path_to_name{$test}));
+                   x ($dotdotdot - length($::path_to_name{$test})) .' ';
 
        if ($^O ne 'VMS') {  # defer printing on VMS due to piping bug
            print $te;
            $te = '';
        }
 
-        my $results = _run_test(undef, $test, $type);
+        (local $Valgrind_Log = "$test.valgrind-current") =~ s/^.*\///;
+       my $results = _run_test($test, $type);
 
        my $failure;
        my $next = 0;
@@ -478,8 +598,8 @@ EOT
                    }
                    $max = $1;
                    %todo = map { $_ => 1 } split / /, $3 if $3;
-                   $totmax += $max;
-                   $tested_files++;
+                   $totmax = $totmax + $max;
+                   $tested_files = $tested_files + 1;
                    if ($seen_ok) {
                        # 1..n appears at end of file
                        $trailing_leader = 1;
@@ -501,7 +621,7 @@ EOT
                            }
                        }
                        $seen_ok = 1;
-                       $next++;
+                       $next = $next + 1;
                        my($not, $num, $extra, $istodo) = ($1, $2, $3, 0);
                        $num = $next unless $num;
 
@@ -509,7 +629,7 @@ EOT
 
                            # SKIP is essentially the same as TODO for t/TEST
                            # this still conforms to TAP:
-                           # http://search.cpan.org/dist/TAP/TAP.pod
+                           # http://testanything.org/wiki/index.php/TAP_specification
                            $extra and $istodo = $extra =~ /#\s*(?:TODO|SKIP)\b/;
                            $istodo = 1 if $todo{$num};
 
@@ -529,7 +649,7 @@ EOT
                    else {
                        # module tests are allowed extra output,
                        # because Test::Harness allows it
-                       next if $test =~ /^\W*(ext|lib)\b/;
+                       next if $test =~ /^\W*(cpan|dist|ext|lib)\b/;
                        $failure = "FAILED--unexpected output at test $next";
                        last;
                    }
@@ -543,7 +663,9 @@ EOT
        }
 
        if ($ENV{PERL_VALGRIND}) {
-           my @valgrind;
+           $toolnm = $ENV{VALGRIND};
+           $toolnm =~ s|.*/||;  # keep basename
+           my @valgrind;       # gets content of file
            if (-e $Valgrind_Log) {
                if (open(V, $Valgrind_Log)) {
                    @valgrind = <V>;
@@ -552,11 +674,17 @@ EOT
                    warn "$0: Failed to open '$Valgrind_Log': $!\n";
                }
            }
-           if ($ENV{VG_OPTS} =~ /cachegrind/) {
-               if (rename $Valgrind_Log, "$test.valgrind") {
-                   $valgrind++;
+           if ($ENV{VG_OPTS} =~ /(cachegrind)/ or $toolnm =~ /(perf)/) {
+               $toolnm = $1;
+               if ($toolnm eq 'perf') {
+                   # append perfs subcommand, not just stat
+                   my ($sub) = split /\s/, $ENV{VG_OPTS};
+                   $toolnm .= "-$sub";
+               }
+               if (rename $Valgrind_Log, "$test.$toolnm") {
+                   $grind_ct++;
                } else {
-                   warn "$0: Failed to create '$test.valgrind': $!\n";
+                   warn "$0: Failed to create '$test.$toolnm': $!\n";
                }
            }
            elsif (@valgrind) {
@@ -565,19 +693,19 @@ EOT
                for my $i (0..$#valgrind) {
                    local $_ = $valgrind[$i];
                    if (/^==\d+== ERROR SUMMARY: (\d+) errors? /) {
-                       $errors += $1;   # there may be multiple error summaries
+                       $errors = $errors + $1;   # there may be multiple error summaries
                    } elsif (/^==\d+== LEAK SUMMARY:/) {
                        for my $off (1 .. 4) {
                            if ($valgrind[$i+$off] =~
                                /(?:lost|reachable):\s+\d+ bytes in (\d+) blocks/) {
-                               $leaks += $1;
+                               $leaks = $leaks + $1;
                            }
                        }
                    }
                }
                if ($errors or $leaks) {
                    if (rename $Valgrind_Log, "$test.valgrind") {
-                       $valgrind++;
+                       $grind_ct = $grind_ct + 1;
                    } else {
                        warn "$0: Failed to create '$test.valgrind': $!\n";
                    }
@@ -613,27 +741,32 @@ EOT
 
        if (defined $failure) {
            print "${te}$failure\n";
-           $::bad_files++;
+           $::bad_files = $::bad_files + 1;
            if ($test =~ /^base/) {
                die "Failed a basic test ($test) -- cannot continue.\n";
            }
-           ++$failed_tests{$test};
+           $failed_tests{$test} = 1;
        }
        else {
            if ($max) {
-               my $elapsed;
+               my ($elapsed, $etms) = ("", 0);
                if ( $show_elapsed_time ) {
-                   $elapsed = sprintf( " %8.0f ms", (Time::HiRes::time() - $test_start_time) * 1000 );
-               }
-               else {
-                   $elapsed = "";
+                   $etms = (Time::HiRes::time() - $test_start_time) * 1000;
+                   $elapsed = sprintf(" %8.0f ms", $etms);
+
+                   my (@endtimes) = times;
+                   $endtimes[$_] -= $starttimes[$_] for 0..$#endtimes;
+                   splice @endtimes, 0, 2;    # drop self/harness times
+                   $_ *= 1000 for @endtimes;  # and scale to ms
+                   $timings{$test} = [$etms,@endtimes];
+                   $elapsed .= sprintf(" %5.0f ms", $_) for @endtimes;
                }
                print "${te}ok$elapsed\n";
-               $good_files++;
+               $good_files = $good_files + 1;
            }
            else {
                print "${te}skipped\n";
-               $tested_files -= 1;
+               $tested_files = $tested_files - 1;
            }
        }
     } # while tests
@@ -691,13 +824,68 @@ SHRDLU_5
        }
     }
     my ($user,$sys,$cuser,$csys) = times;
-    print sprintf("u=%.2f  s=%.2f  cu=%.2f  cs=%.2f  scripts=%d  tests=%d\n",
-       $user,$sys,$cuser,$csys,$tested_files,$totmax);
+    my $tot = sprintf("u=%.2f  s=%.2f  cu=%.2f  cs=%.2f  scripts=%d  tests=%d",
+                     $user,$sys,$cuser,$csys,$tested_files,$totmax);
+    print "$tot\n";
+    if ($good_files) {
+       if (-d $show_elapsed_time) {
+           # HARNESS_TIMER = <a-directory>.  Save timings etc to
+           # storable file there.  NB: the test cds to ./t/, so
+           # relative path must account for that, ie ../../perf
+           # points to dir next to source tree.
+           require Storable;
+           my @dt = localtime;
+           $dt[5] += 1900; $dt[4] += 1; # fix year, month
+           my $fn = "$show_elapsed_time/".join('-', @dt[5,4,3,2,1]).".ttimes";
+           Storable::store({ perf => \%timings,
+                             gather_conf_platform_info(),
+                             total => $tot,
+                           }, $fn);
+           print "wrote storable file: $fn\n";
+       }
+    }
     if ($ENV{PERL_VALGRIND}) {
-       my $s = $valgrind == 1 ? '' : 's';
-       print "$valgrind valgrind report$s created.\n", ;
+       my $s = $grind_ct == 1 ? '' : 's';
+       print "$grind_ct valgrind report$s created.\n", ;
+       if ($toolnm eq 'cachegrind') {
+           # cachegrind leaves a lot of cachegrind.out.$pid litter
+           # around the tree, find and delete them
+           unlink _find_files('cachegrind.out.\d+$',
+                            qw ( ../t ../cpan ../ext ../dist/ ));
+       }
     }
 }
 exit ($::bad_files != 0);
 
+# Collect platform, config data that should allow comparing
+# performance data between different machines.  With enough data,
+# and/or clever statistical analysis, it should be possible to
+# determine the effect of config choices, more memory, etc
+
+sub gather_conf_platform_info {
+    # currently rather quick & dirty, and subject to change
+    # for both content and format.
+    require Config;
+    my (%conf, @platform) = ();
+    $conf{$_} = $Config::Config{$_} for
+       grep /cc|git|config_arg\d+/, keys %Config::Config;
+    if (-f '/proc/cpuinfo') {
+       open my $fh, '/proc/cpuinfo' or warn "$!: /proc/cpuinfo\n";
+       @platform = grep /name|cpu/, <$fh>;
+       chomp $_ for @platform;
+    }
+    unshift @platform, $^O;
+
+    return (
+       conf => \%conf,
+       platform => {cpu => \@platform,
+                    mem => [ grep s/\s+/ /,
+                             grep chomp, `free` ],
+                    load => [ grep chomp, `uptime` ],
+       },
+       host => (grep chomp, `hostname -f`),
+       version => '0.03', # bump for conf, platform, or data collection changes
+       );
+}
+
 # ex: set ts=8 sts=4 sw=4 noet: