From 12068aa4e980ab32a0438408a519030e65dabf5e Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 8 Jul 2018 17:03:23 +0000 Subject: benchmark/vm2_*.yml: abstract away the while loop git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/vm2_struct_big_href_lo.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'benchmark/vm2_struct_big_href_lo.yml') diff --git a/benchmark/vm2_struct_big_href_lo.yml b/benchmark/vm2_struct_big_href_lo.yml index da89941da3..d662816428 100644 --- a/benchmark/vm2_struct_big_href_lo.yml +++ b/benchmark/vm2_struct_big_href_lo.yml @@ -1,10 +1,8 @@ +prelude: | + s = Struct.new(*('a'..'z').map { |x| x.to_sym }) + x = s.new benchmark: - vm2_struct_big_href_lo: | - s = Struct.new(*('a'..'z').map { |x| x.to_sym }) - x = s.new - i = 0 - while i<6_000_000 # benchmark loop 2 - i += 1 - x[:k] - end -loop_count: 1 + vm2_struct_big_href_lo: 'x[:k] + +' +loop_count: 6000000 -- cgit v1.2.3