ruby-changes:42644
From: nagachika <ko1@a...>
Date: Sat, 23 Apr 2016 00:13:31 +0900 (JST)
Subject: [ruby-changes:42644] nagachika:r54718 (ruby_2_3): merge revision(s) 54681: [Backport #12302]
nagachika 2016-04-23 01:10:08 +0900 (Sat, 23 Apr 2016) New Revision: 54718 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54718 Log: merge revision(s) 54681: [Backport #12302] * eval_jump.c (exec_end_procs_chain): restore previous error info for each end procs. [ruby-core:75038] [Bug #12302] Modified directories: branches/ruby_2_3/ Modified files: branches/ruby_2_3/ChangeLog branches/ruby_2_3/eval_jump.c branches/ruby_2_3/test/ruby/test_beginendblock.rb branches/ruby_2_3/version.h Index: ruby_2_3/test/ruby/test_beginendblock.rb =================================================================== --- ruby_2_3/test/ruby/test_beginendblock.rb (revision 54717) +++ ruby_2_3/test/ruby/test_beginendblock.rb (revision 54718) @@ -130,4 +130,22 @@ at_exit { callcc {|_c| c = _c } } https://github.com/ruby/ruby/blob/trunk/ruby_2_3/test/ruby/test_beginendblock.rb#L130 EOS assert_normal_exit(script, bug9110) end + + def test_errinfo_at_exit + bug12302 = '[ruby-core:75038] [Bug #12302]' + assert_in_out_err([], <<-'end;', %w[2:exit 1:exit], [], bug12302) + at_exit do + puts "1:#{$!}" + end + + at_exit do + puts "2:#{$!}" + raise 'x' rescue nil + end + + at_exit do + exit + end + end; + end end Index: ruby_2_3/ChangeLog =================================================================== --- ruby_2_3/ChangeLog (revision 54717) +++ ruby_2_3/ChangeLog (revision 54718) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1 +Sat Apr 23 01:01:13 2016 Nobuyoshi Nakada <nobu@r...> + + * eval_jump.c (exec_end_procs_chain): restore previous error info + for each end procs. [ruby-core:75038] [Bug #12302] + Sat Apr 23 00:51:51 2016 Nobuyoshi Nakada <nobu@r...> * compile.c (new_label_body): initialize bit fields, since Index: ruby_2_3/eval_jump.c =================================================================== --- ruby_2_3/eval_jump.c (revision 54717) +++ ruby_2_3/eval_jump.c (revision 54718) @@ -94,10 +94,11 @@ rb_mark_end_proc(void) https://github.com/ruby/ruby/blob/trunk/ruby_2_3/eval_jump.c#L94 } static void -exec_end_procs_chain(struct end_proc_data *volatile *procs) +exec_end_procs_chain(struct end_proc_data *volatile *procs, VALUE *errp) { struct end_proc_data volatile endproc; struct end_proc_data *link; + VALUE errinfo = *errp; while ((link = *procs) != 0) { *procs = link->next; @@ -105,6 +106,7 @@ exec_end_procs_chain(struct end_proc_dat https://github.com/ruby/ruby/blob/trunk/ruby_2_3/eval_jump.c#L106 xfree(link); rb_set_safe_level_force(endproc.safe); (*endproc.func) (endproc.data); + *errp = errinfo; } } @@ -119,8 +121,8 @@ rb_exec_end_proc(void) https://github.com/ruby/ruby/blob/trunk/ruby_2_3/eval_jump.c#L121 TH_PUSH_TAG(th); if ((status = EXEC_TAG()) == 0) { again: - exec_end_procs_chain(&ephemeral_end_procs); - exec_end_procs_chain(&end_procs); + exec_end_procs_chain(&ephemeral_end_procs, &th->errinfo); + exec_end_procs_chain(&end_procs, &th->errinfo); } else { VAR_INITIALIZED(th); Index: ruby_2_3/version.h =================================================================== --- ruby_2_3/version.h (revision 54717) +++ ruby_2_3/version.h (revision 54718) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1 #define RUBY_VERSION "2.3.0" #define RUBY_RELEASE_DATE "2016-04-23" -#define RUBY_PATCHLEVEL 105 +#define RUBY_PATCHLEVEL 106 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 4 Property changes on: ruby_2_3 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r54681 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/