mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Fix Exception#detailed_message for GC compaction
Before this commit, the test fails with RGENGC_CHECK_MODE enabled: TestException#test_detailed_message_under_gc_compact_stress [test/ruby/test_exception.rb:1466]: <"\e[1mfoo (\e[1;4mRuntimeError\e[m\e[1m)\e[m\n" + "\e[1mbar\e[m\n" + "\e[1mbaz\e[m"> expected but was <"\e[1mfoo (\e[1;4mRuntimeError\e[m\e[1m)\e[m\n" + "\e[1m\x00\x00\x00\x00\x00\x00\x00\e[m">.
This commit is contained in:
parent
28ec79404a
commit
b959263b58
3 changed files with 12 additions and 2 deletions
2
error.c
2
error.c
|
@ -1662,7 +1662,7 @@ exc_detailed_message(int argc, VALUE *argv, VALUE exc)
|
|||
|
||||
VALUE highlight = check_highlight_keyword(opt, 0);
|
||||
|
||||
extern VALUE rb_decorate_message(const VALUE eclass, const VALUE emesg, int highlight);
|
||||
extern VALUE rb_decorate_message(const VALUE eclass, VALUE emesg, int highlight);
|
||||
|
||||
return rb_decorate_message(CLASS_OF(exc), rb_get_message(exc), RTEST(highlight));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue