aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm1_blockparam_pass.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm1_blockparam_pass.yml')
-rw-r--r--benchmark/vm1_blockparam_pass.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/benchmark/vm1_blockparam_pass.yml b/benchmark/vm1_blockparam_pass.yml
new file mode 100644
index 0000000000..951518b5f6
--- /dev/null
+++ b/benchmark/vm1_blockparam_pass.yml
@@ -0,0 +1,16 @@
+benchmark:
+ vm1_blockparam_pass: |
+ def bp_yield
+ yield
+ end
+
+ def bp_pass &b
+ bp_yield &b
+ end
+
+ i = 0
+ while i<30_000_000 # while loop 1
+ i += 1
+ bp_pass{}
+ end
+loop_count: 1