From 5e2625eebd5ab1c1224ea35d70ad544e67a4ee41 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 16 Oct 2012 23:47:51 +0000 Subject: * benchmark/bm_vm2_dstr.rb: add a benchmark to measure performance of dynamic generated string ("foo#{bar}baz"). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37236 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/bm_vm2_dstr.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 benchmark/bm_vm2_dstr.rb (limited to 'benchmark/bm_vm2_dstr.rb') diff --git a/benchmark/bm_vm2_dstr.rb b/benchmark/bm_vm2_dstr.rb new file mode 100644 index 0000000000..58c0f7bbc3 --- /dev/null +++ b/benchmark/bm_vm2_dstr.rb @@ -0,0 +1,6 @@ +i = 0 +x = y = 'z' +while i<6_000_000 # benchmark loop 2 + i += 1 + str = "foo#{x}bar#{y}baz" +end -- cgit v1.2.3