ruby-changes:55436
From: tenderlove <ko1@a...>
Date: Sat, 20 Apr 2019 18:29:23 +0900 (JST)
Subject: [ruby-changes:55436] tenderlove:r67648 (trunk): skip test if mjit is enabled
tenderlove 2019-04-20 18:29:19 +0900 (Sat, 20 Apr 2019) New Revision: 67648 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67648 Log: skip test if mjit is enabled Modified files: trunk/test/ruby/test_gc_compact.rb Index: test/ruby/test_gc_compact.rb =================================================================== --- test/ruby/test_gc_compact.rb (revision 67647) +++ test/ruby/test_gc_compact.rb (revision 67648) @@ -103,6 +103,8 @@ class TestGCCompact < Test::Unit::TestCa https://github.com/ruby/ruby/blob/trunk/test/ruby/test_gc_compact.rb#L103 end def test_many_collisions + skip if RubyVM::MJIT.enabled? + list_of_objects = big_list ids = list_of_objects.map(&:object_id) addresses = list_of_objects.map(&self.:memory_location) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/