summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-21 10:06:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-21 10:06:23 +0000
commitbc7e5fcb32d84a8537390f1352f811c154782dc4 (patch)
tree6a6f51b385f9381c2f916d8f76c68122abfcff49 /test
parent538653464bf3bdd9937403fbf7865d4189b25257 (diff)
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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_iseq.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb
index 9d714a3708..315771db3d 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -406,8 +406,8 @@ class TestISeq < Test::Unit::TestCase
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