From a036c0265033e54e9323f527d9897e19d01400f2 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 9 Mar 2016 07:42:32 +0000 Subject: * benchmark/driver.rb: fix output messages. * benchmark/memory_wrapper.rb: use respond_to? because member? does not work well. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/driver.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'benchmark/driver.rb') diff --git a/benchmark/driver.rb b/benchmark/driver.rb index 52d45e17fa..38c6e045f1 100644 --- a/benchmark/driver.rb +++ b/benchmark/driver.rb @@ -219,9 +219,9 @@ class BenchmarkDriver if @execs.size > 1 output output({ - rss: "Memory consuming ratio (RSS) with the result of `#{@execs[0][1]}' (greater is worse)", - peak: "Memory consuming ratio (peak) with the result of `#{@execs[0][1]}' (greater is worse)", - size: "Memory consuming ratio (size) with the result of `#{@execs[0][1]}' (greater is worse)", + real: "Speedup ratio: compare with the result of `#{@execs[0][1]}' (greater is better)" + peak: "Memory consuming ratio (peak) with the result of `#{@execs[0][1]}' (greater is better)", + size: "Memory consuming ratio (size) with the result of `#{@execs[0][1]}' (greater is better)", }[@measure_target]) output if markdown output ["name".ljust(name_width), @execs[1..-1].map.with_index{|(_, v), i| sprintf(strformat, v, width[i])}].join("").rstrip -- cgit v1.2.3