summaryrefslogtreecommitdiff
path: root/benchmark/vm_struct_small_aset.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm_struct_small_aset.yml')
-rw-r--r--benchmark/vm_struct_small_aset.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/benchmark/vm_struct_small_aset.yml b/benchmark/vm_struct_small_aset.yml
new file mode 100644
index 0000000000..74f435f126
--- /dev/null
+++ b/benchmark/vm_struct_small_aset.yml
@@ -0,0 +1,11 @@
+# loop_count is not utilized since `i` is involved in the script
+benchmark:
+ vm_struct_small_aset: |
+ s = Struct.new(:a, :b, :c)
+ x = s.new
+ i = 0
+ while i<6_000_000
+ i += 1
+ x.a = i
+ end
+loop_count: 1