aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm1_rescue.yml
blob: 539a6e88f71b9fbd520c04e83cb755fdbf2f58b2 (plain)
1
2
3
4
5
6
7
8
9
10
benchmark:
  vm1_rescue: |
    i = 0
    while i<30_000_000 # while loop 1
      i += 1
      begin
      rescue
      end
    end
loop_count: 1