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_aset.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'benchmark/vm2_struct_big_aset.yml') diff --git a/benchmark/vm2_struct_big_aset.yml b/benchmark/vm2_struct_big_aset.yml index 54b3aa1..4578876 100644 --- a/benchmark/vm2_struct_big_aset.yml +++ b/benchmark/vm2_struct_big_aset.yml @@ -1,10 +1,8 @@ +prelude: | + s = Struct.new(*('a'..'z').map { |x| x.to_sym }) + x = s.new benchmark: - vm2_struct_big_aset: | - 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 = i # x[10] = i - end -loop_count: 1 + vm2_struct_big_aset: 'x.k = i # x[10] = i + +' +loop_count: 6000000 -- cgit v1.1