From b18c71e63901352583c3c3cb976b48893aea37b9 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 3 Nov 2017 00:52:54 +0000 Subject: [PATCH] test/ruby/test_eval.rb: use orphan procs This failure has been hidden by the bug of assert_raise which is fixed at r60614. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_eval.rb | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/test/ruby/test_eval.rb b/test/ruby/test_eval.rb index c73dfde9a7..9f25b771bf 100644 --- a/test/ruby/test_eval.rb +++ b/test/ruby/test_eval.rb @@ -526,14 +526,21 @@ class TestEval < Test::Unit::TestCase }, '[Bug #10368]' end + def orphan_proc + proc {eval("return :ng")} + end + + def orphan_lambda + lambda {eval("return :ok")} + end + def test_return_in_eval_proc - skip - x = proc {eval("return :ng")} + x = orphan_proc assert_raise(LocalJumpError) {x.call} end def test_return_in_eval_lambda - x = lambda {eval("return :ok")} + x = orphan_lambda assert_equal(:ok, x.call) end end