1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

load.c: setup syntax error backtrace

* load.c (rb_require_safe): SyntaxError created by the parser just
  has the mesage and needs to set up the backtrace.
  [ruby-core:77491] [Bug #12811]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-10-06 08:29:46 +00:00
parent 24b37eb0a6
commit d3cde81666
3 changed files with 16 additions and 11 deletions

View file

@ -1,4 +1,8 @@
Thu Oct 6 15:53:20 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
Thu Oct 6 17:29:44 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* load.c (rb_require_safe): SyntaxError created by the parser just
has the mesage and needs to set up the backtrace.
[ruby-core:77491] [Bug #12811]
* load.c (rb_load_internal0): load/require is not the main
script.

1
load.c
View file

@ -1040,6 +1040,7 @@ rb_require_safe(VALUE fname, int safe)
int result = rb_require_internal(fname, safe);
if (result > TAG_RETURN) {
if (result == TAG_RAISE) rb_exc_raise(rb_errinfo());
JUMP_TAG(result);
}
if (result < 0) {

View file

@ -182,24 +182,24 @@ class TestRequire < Test::Unit::TestCase
end
end
def test_require_syntax_error
def assert_syntax_error_backtrace
Dir.mktmpdir do |tmp|
req = File.join(tmp, "test.rb")
File.write(req, "'\n")
assert_raise_with_message(SyntaxError, /unterminated/) {
require req
e = assert_raise_with_message(SyntaxError, /unterminated/) {
yield req
}
assert_not_nil(bt = e.backtrace)
assert_not_empty(bt.find_all {|b| b.start_with? __FILE__})
end
end
def test_require_syntax_error
assert_syntax_error_backtrace {|req| require req}
end
def test_load_syntax_error
Dir.mktmpdir do |tmp|
req = File.join(tmp, "test.rb")
File.write(req, "'\n")
assert_raise_with_message(SyntaxError, /unterminated/) {
load req
}
end
assert_syntax_error_backtrace {|req| load req}
end
def test_define_class