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.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-03-21 10:06:23 +00:00
Родитель 538653464b
Коммит bc7e5fcb32
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -406,8 +406,8 @@ class TestISeq < Test::Unit::TestCase
skip e.message if /compile with coverage/ =~ e.message skip e.message if /compile with coverage/ =~ e.message
raise raise
end end
iseq2 = RubyVM::InstructionSequence.load_from_binary(bin)
skip "trace events does not load correctly since r62851" skip "trace events does not load correctly since r62851"
iseq2 = RubyVM::InstructionSequence.load_from_binary(bin)
assert_equal(iseq.to_a, iseq2.to_a) assert_equal(iseq.to_a, iseq2.to_a)
end end
end end