summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-08 03:45:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-08 03:45:34 +0000
commit1bf10e33fd3a3cdaa26fbeef119316553d125ddd (patch)
tree7903e390f265d25f121fd988da7ec0fc07934007 /benchmark
parentfaf472a2bb14dc8a49d13130038bf67c51b08948 (diff)
driver.rb: adjust name width [ci skip]
* benchmark/driver.rb (show_results): count adjusted result marks as the name width. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57285 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/driver.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/benchmark/driver.rb b/benchmark/driver.rb
index eb976b4a90..a4f09b105f 100644
--- a/benchmark/driver.rb
+++ b/benchmark/driver.rb
@@ -153,7 +153,9 @@ class BenchmarkDriver
numformat = " %1$*2$.3f"
end
- name_width ||= @results.map {|v,*| v.size}.max
+ name_width ||= @results.map {|v, result|
+ v.size + (case v; when /^vm1_/; @loop_wl1; when /^vm2_/; @loop_wl2; end ? 1 : 0)
+ }.max
minwidth ||= 7
width = @execs.map{|(_, v)| [v.size, minwidth].max}