diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-11-07 06:39:52 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-11-07 06:39:52 -0500 |
commit | 56e28cb052360c350808a1a5f8d4fbdeba895291 (patch) | |
tree | 5e2af80d81e8e278d933bb0be2c40b7dcc4fc89c /t/TEST | |
parent | e73fd51eb894a6670e2825e3a3c4d847434c98ad (diff) | |
download | perl-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-x | t/TEST | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 ); } |