summaryrefslogtreecommitdiff
path: root/t/TEST
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-11-07 06:39:52 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2014-11-07 06:39:52 -0500
commit56e28cb052360c350808a1a5f8d4fbdeba895291 (patch)
tree5e2af80d81e8e278d933bb0be2c40b7dcc4fc89c /t/TEST
parente73fd51eb894a6670e2825e3a3c4d847434c98ad (diff)
downloadperl-56e28cb052360c350808a1a5f8d4fbdeba895291.tar.gz
Revert "t/TEST: change timings Storable key: perf -> times, a better description"
This reverts commit ba369d6f39f2f98f9e999dc978baeba4d4efba25.
Diffstat (limited to 't/TEST')
-rwxr-xr-xt/TEST12
1 files changed, 6 insertions, 6 deletions
diff --git a/t/TEST b/t/TEST
index f29d9e92fb..1b5dd09643 100755
--- a/t/TEST
+++ b/t/TEST
@@ -814,13 +814,13 @@ SHRDLU_5
print "$tot\n";
if ($good_files) {
if (-d $show_elapsed_time) {
- # HARNESS_TIMER = <a-directory>. Save a storable file of
- # timings data into the dir. NB: the test cds to ./t/, so
- # relative path must account for that, or better, just
- # give an abs-path.
+ # 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 $fn = "$show_elapsed_time/$::tstamp.ttimes";
- Storable::store({ times => \%timings,
+ Storable::store({ perf => \%timings,
gather_conf_platform_info(),
total => $tot,
}, $fn);
@@ -859,7 +859,7 @@ sub gather_conf_platform_info {
load => [ grep chomp, `uptime` ],
},
host => (grep chomp, `hostname -f`),
- version => '0.031', # bump for conf, platform, or data collection changes
+ version => '0.03', # bump for conf, platform, or data collection changes
);
}