[rubygems/rubygems] Use a constant empty tar header to avoid extra allocations
[ruby.git] / benchmark / vm_ensure.yml
blob4ea62f30defb9f03bba2209d17523bca79228c26
1 # Not utilizing loop_count since using it for this is too unstable for now
2 benchmark:
3   vm_ensure: |
4     i = 0
5     while i<30_000_000
6       i += 1
7       begin
8         begin
9         ensure
10         end
11       ensure
12       end
13     end
14 loop_count: 1