summaryrefslogtreecommitdiff
path: root/benchmark/vm2_zsuper.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 17:03:23 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-08 17:03:23 +0000
commit12068aa4e980ab32a0438408a519030e65dabf5e (patch)
treed62bc1f1849ef9d5c9abd2c58d0ababde219f2b5 /benchmark/vm2_zsuper.yml
parent1aedeaa476a073d81d0539f66cfb4f6363b6766a (diff)
benchmark/vm2_*.yml: abstract away the while loop
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/vm2_zsuper.yml')
-rw-r--r--benchmark/vm2_zsuper.yml33
1 files changed, 14 insertions, 19 deletions
diff --git a/benchmark/vm2_zsuper.yml b/benchmark/vm2_zsuper.yml
index bde57beaad..f760cfd48e 100644
--- a/benchmark/vm2_zsuper.yml
+++ b/benchmark/vm2_zsuper.yml
@@ -1,23 +1,18 @@
-benchmark:
- vm2_zsuper: |
- i = 0
-
- class C
- def m a
- 1
- end
+prelude: |
+ class C
+ def m a
+ 1
end
+ end
- class CC < C
- def m a
- super
- end
+ class CC < C
+ def m a
+ super
end
+ end
- obj = CC.new
-
- while i<6_000_000 # benchmark loop 2
- obj.m 10
- i += 1
- end
-loop_count: 1
+ obj = CC.new
+benchmark:
+ vm2_zsuper: |
+ obj.m 10
+loop_count: 6000000