summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-03 15:41:24 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-03 15:41:24 +0000
commitb17da781050f2bd464b7dbff759783e04428f4b4 (patch)
tree0167cda3b3f52b3f62ceb366dce4f7ea1a3e3f9b /test
parent47a357424198aec757162a1b18233eafa28e4af2 (diff)
merge revision(s) 59202: [Backport #13690]
compile.c: disallow next in once * compile.c (iseq_compile_each0): turned dregx context in "once" into "guarded" type from "block" type, to disallow `next`, `break`, `redo` as well as outside "once". [ruby-core:81805] [Bug #13690] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@59492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_exception.rb11
-rw-r--r--test/ruby/test_syntax.rb8
2 files changed, 8 insertions, 11 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb
index 1a5f31ff0d..a6b707bcca 100644
--- a/test/ruby/test_exception.rb
+++ b/test/ruby/test_exception.rb
@@ -1019,15 +1019,4 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status|
}
end;
end
-
- def test_break_in_once
- assert_separately([], "#{<<-"begin;"}\n#{<<~'end;'}")
- begin;
- obj = Object.new
- def obj.try
- /#{break}/o
- end
- assert_raise(LocalJumpError, /proc-closure/) {obj.try}
- end;
- end
end
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 4f17f453a4..251da58297 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -478,8 +478,16 @@ WARN
}
end
+ def test_invalid_break
+ assert_syntax_error("def m; break; end", /Invalid break/)
+ assert_syntax_error('/#{break}/', /Invalid break/)
+ assert_syntax_error('/#{break}/o', /Invalid break/)
+ end
+
def test_invalid_next
assert_syntax_error("def m; next; end", /Invalid next/)
+ assert_syntax_error('/#{next}/', /Invalid next/)
+ assert_syntax_error('/#{next}/o', /Invalid next/)
end
def test_lambda_with_space