aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-/exception
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-03 06:23:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-03 06:23:34 +0000
commit5f6b1ad4768e18db330cfe8b62f0d66f5c935ead (patch)
tree4b9cf864c58949b8967bb4fb1720b92edd83cf86 /test/-ext-/exception
parenta72e8ebb65e7735ed08b1ea59f682eaa0102a42f (diff)
downloadruby-5f6b1ad4768e18db330cfe8b62f0d66f5c935ead.tar.gz
eval.c: hide internal objects
* eval.c (rb_ensure): veil internal exception objects not to leak in ensure functions. [ruby-core:79371] [Bug #13176] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57510 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-/exception')
-rw-r--r--test/-ext-/exception/test_exception_at_throwing.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/-ext-/exception/test_exception_at_throwing.rb b/test/-ext-/exception/test_exception_at_throwing.rb
new file mode 100644
index 0000000000..aba26079eb
--- /dev/null
+++ b/test/-ext-/exception/test_exception_at_throwing.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+require 'test/unit'
+
+module Bug
+ class TestException < Test::Unit::TestCase
+ def test_exception_at_throwing
+ assert_separately(%w[-r-test-/exception], "#{<<-"begin;"}\n#{<<-"end;"}")
+ begin;
+ e = RuntimeError.new("[Bug #13176]")
+ assert_raise_with_message(e.class, e.message) do
+ catch do |t|
+ Bug::Exception.ensure_raise(nil, e) {throw t}
+ end
+ end
+ end;
+ end
+ end
+end