aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2019-08-07 22:15:45 -0400
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-09 01:29:53 +0900
commit050b932152fb3004c78af223186afe1aa397f06f (patch)
treec5a0e56a30066fefc220dbd6268e9a8b405efae9 /test
parent830fd0418170843f234ed82e07d2fd61d86153e7 (diff)
downloadruby-050b932152fb3004c78af223186afe1aa397f06f.tar.gz
Iseq#to_binary: Add support for NoMatchingPatternError and TypeError
Binary dumping the iseq for `case foo in []; end` used to crash as there was no handling for these exception classes. Pattern matching generates these classes as operands to `putobject`. [Bug #16088] Closes: https://github.com/ruby/ruby/pull/2325
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_iseq.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb
index b4d44e5f28..1a1abc627b 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -433,6 +433,16 @@ class TestISeq < Test::Unit::TestCase
assert_iseq_to_binary("@x ||= (1..2)")
end
+ def test_to_binary_pattern_matching
+ code = "case foo in []; end"
+ iseq = compile(code)
+ assert_include(iseq.disasm, "TypeError")
+ assert_include(iseq.disasm, "NoMatchingPatternError")
+ EnvUtil.suppress_warning do
+ assert_iseq_to_binary(code, "[Feature #14912]")
+ end
+ end
+
def test_to_binary_line_info
assert_iseq_to_binary("#{<<~"begin;"}\n#{<<~'end;'}", '[Bug #14660]').eval
begin;