summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-14 15:21:50 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-14 15:21:50 +0000
commitb1944e41f5f5711e3b79bf08f2b54da1d7d6890b (patch)
treeb43b85f34c2ddfa7e7f9a61673eb7a9bcbe685a3 /test
parent783f1b29087f4e8f11b873c1657dd927b0ecdd49 (diff)
merge revision(s) 62772: [Backport #14738]
compile.c: fix load_from_binary * compile.c (ibf_load_iseq_each): realpath may be nil. follow up r59709. [fix https://github.com/Shopify/bootsnap/issues/132] From: nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@65728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_iseq.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb
index 404539ed7f..6d778d3ded 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -391,6 +391,14 @@ class TestISeq < Test::Unit::TestCase
}
end
+ def test_to_binary_with_objects
+ code = "[]"+100.times.map{|i|"<</#{i}/"}.join
+ iseq = RubyVM::InstructionSequence.compile(code)
+ bin = assert_nothing_raised {iseq.to_binary}
+ iseq2 = RubyVM::InstructionSequence.load_from_binary(bin)
+ assert_equal(iseq2.to_a, iseq.to_a)
+ end
+
def test_to_binary_tracepoint
filename = "#{File.basename(__FILE__)}_#{__LINE__}"
iseq = RubyVM::InstructionSequence.compile("x = 1\n y = 2", filename)