summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm1_gc_wb_obj_promoted.rb
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-04 08:55:54 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-04 08:55:54 +0000
commit9f9d9e50008ce78ae3bbb0e46270f14933c5611f (patch)
tree99eb39280d85fc0ef37edae6a589ca6eeee6e17f /benchmark/bm_vm1_gc_wb_obj_promoted.rb
parentc20bba2cba592e94d5235c3b19c4e8d8a8becd72 (diff)
benchmark/bm_vm1_gc_wb_*.rb: fix GC.start args for invalid keyword
"lazy_sweep" does not appear to have ever been a valid kwarg for GC.start, however the opposite of "lazy_sweep" appears to be "immediate_sweep". So use immediate_sweep, and flip the boolean value of each arg. I guess this only started failing with r56981 in Dec 2016 ("class.c: missing unknown_keyword_error", commit e3f0cca2f26ba44c810ac980cdff7dda129ae533) * benchmark/bm_vm1_gc_wb_ary.rb: "lazy_sweep: false" => "immediate_sweep: true" * benchmark/bm_vm1_gc_wb_ary_promoted.rb: ditto * benchmark/bm_vm1_gc_wb_obj.rb: ditto * benchmark/bm_vm1_gc_wb_obj_promoted.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/bm_vm1_gc_wb_obj_promoted.rb')
-rw-r--r--benchmark/bm_vm1_gc_wb_obj_promoted.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/bm_vm1_gc_wb_obj_promoted.rb b/benchmark/bm_vm1_gc_wb_obj_promoted.rb
index eee07a0248..674c413992 100644
--- a/benchmark/bm_vm1_gc_wb_obj_promoted.rb
+++ b/benchmark/bm_vm1_gc_wb_obj_promoted.rb
@@ -4,7 +4,7 @@ end
long_lived = C.new
if RUBY_VERSION >= "2.2.0"
- 3.times{ GC.start(full_mark: false, immediate_mark: true, lazy_sweep: false) }
+ 3.times{ GC.start(full_mark: false, immediate_mark: true, immediate_sweep: true) }
elsif
GC.start
end