diff options
author | nagachika <[email protected]> | 2022-03-13 11:37:03 +0900 |
---|---|---|
committer | nagachika <[email protected]> | 2022-03-13 11:37:03 +0900 |
commit | 42b1e87ba7856f92973924985a63a60b5fa750c8 (patch) | |
tree | 8fe69cea3dce7e88b29044f0553b8c7126f64a31 | |
parent | e18e6af604786be481115c7340c1450332615b57 (diff) |
merge revision(s) ae5458f228a5477383e9c00425d85d50a3867817: [Backport #18475]
thread.c: Convert TAG_BREAK to a normal exception at thread top-level
[Bug #18475]
---
test/ruby/test_enum.rb | 11 +++++++++++
thread.c | 3 +++
2 files changed, 14 insertions(+)
-rw-r--r-- | test/ruby/test_enum.rb | 11 | ||||
-rw-r--r-- | thread.c | 3 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 16 insertions, 2 deletions
diff --git a/test/ruby/test_enum.rb b/test/ruby/test_enum.rb index f246828e61..c527191eff 100644 --- a/test/ruby/test_enum.rb +++ b/test/ruby/test_enum.rb @@ -421,6 +421,17 @@ class TestEnumerable < Test::Unit::TestCase empty.first empty.block.call end; + + bug18475 = '[ruby-dev:107059]' + assert_in_out_err([], <<-'end;', [], /unexpected break/, bug18475) + e = Enumerator.new do |g| + Thread.new do + g << 1 + end.join + end + + e.first + end; end def test_sort @@ -835,6 +835,9 @@ thread_start_func_2(rb_thread_t *th, VALUE *stack_start) } else { errinfo = th->ec->errinfo; + VALUE exc = rb_vm_make_jump_tag_but_local_jump(state, Qundef); + if (!NIL_P(exc)) errinfo = exc; + if (state == TAG_FATAL) { if (th->invoke_type == thread_invoke_type_ractor_proc) { rb_ractor_atexit(th->ec, Qnil); @@ -12,11 +12,11 @@ # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR #define RUBY_VERSION_TEENY 4 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR -#define RUBY_PATCHLEVEL 189 +#define RUBY_PATCHLEVEL 190 #define RUBY_RELEASE_YEAR 2022 #define RUBY_RELEASE_MONTH 3 -#define RUBY_RELEASE_DAY 12 +#define RUBY_RELEASE_DAY 13 #include "ruby/version.h" |