summaryrefslogtreecommitdiff
path: root/test/lib/iseq_loader_checker.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 15:10:57 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 15:10:57 +0000
commit4b8da4b9c8494635a4fcdf3a14ba1dc3fece6842 (patch)
tree33e7b36e2c3ad5c076966aee7d518e3c8ed6d3df /test/lib/iseq_loader_checker.rb
parent98b75d59b9c904953e9fce61e43b16088a47e3c2 (diff)
* iseq.c: rename methods
RubyVM::InstructionSequence#to_binary_format -> #to_binary RubyVM::InstructionSequence.from_binary_format -> .load_from_binary RubyVM::InstructionSequence.from_binary_format_extra_data -> .load_from_binary_extra_data * iseq.c: fix document of iseq.to_binary. [Fix GH-1134] * sample/iseq_loader.rb: catch up this change. * test/lib/iseq_loader_checker.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/lib/iseq_loader_checker.rb')
-rw-r--r--test/lib/iseq_loader_checker.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/iseq_loader_checker.rb b/test/lib/iseq_loader_checker.rb
index 09df3d38be..db9b7678c9 100644
--- a/test/lib/iseq_loader_checker.rb
+++ b/test/lib/iseq_loader_checker.rb
@@ -51,18 +51,18 @@ class RubyVM::InstructionSequence
RubyVM::InstructionSequence.iseq_load(ary)
}) if CHECK_TO_A && defined?(RubyVM::InstructionSequence.iseq_load)
- # check to_binary_format
+ # check to_binary
i2_bin = compare_dump_and_load(i1,
proc{|iseq|
begin
- iseq.to_binary_format
+ iseq.to_binary
rescue RuntimeError => e # not a toplevel
# STDERR.puts [:failed, e, iseq].inspect
nil
end
},
proc{|bin|
- iseq = RubyVM::InstructionSequence.from_binary_format(bin)
+ iseq = RubyVM::InstructionSequence.load_from_binary(bin)
# STDERR.puts iseq.inspect
iseq
}) if CHECK_TO_BINARY