ruby-changes:50703
From: nobu <ko1@a...>
Date: Wed, 21 Mar 2018 19:06:30 +0900 (JST)
Subject: [ruby-changes:50703] nobu:r62871 (trunk): test_iseq.rb: disable load_from_binary
nobu 2018-03-21 19:06:23 +0900 (Wed, 21 Mar 2018) New Revision: 62871 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62871 Log: test_iseq.rb: disable load_from_binary * test/ruby/test_iseq.rb (test_to_binary_with_objects): disable load_from_binary right now, r62851 seems having a trouble around get_insn_info_succinct_bitvector() yet. Modified files: trunk/test/ruby/test_iseq.rb Index: test/ruby/test_iseq.rb =================================================================== --- test/ruby/test_iseq.rb (revision 62870) +++ test/ruby/test_iseq.rb (revision 62871) @@ -406,8 +406,8 @@ class TestISeq < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_iseq.rb#L406 skip e.message if /compile with coverage/ =~ e.message raise end - iseq2 = RubyVM::InstructionSequence.load_from_binary(bin) skip "trace events does not load correctly since r62851" + iseq2 = RubyVM::InstructionSequence.load_from_binary(bin) assert_equal(iseq.to_a, iseq2.to_a) end end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/