# Logfile created on 2024-02-23 03:43:33 +0000 by logger.rb/v1.4.3
#<BuildRuby:0x00005624e7cf5820 @REPOSITORY="https://github.com/ruby/ruby.git", @REPOSITORY_TYPE=:git, @git_branch=nil, @git_worktree=nil, @svn_revision=nil, @SRC_DIR="/tmp/ruby/src", @BUILD_DIR="/tmp/ruby/build", @INSTALL_DIR="/tmp/ruby/install", @TARGET_NAME="trunk-yjit", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-yjit", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-yjit", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-yjit", @configure_opts=["cppflags=-DYJIT_FORCE_ENABLE"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS='-j4'", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=10800, @logfile="/home/ko1/ruby/logs/brlog.trunk-yjit.20240223-034333", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x00005624e7d8b230 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00005624e7d8b0f0 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x00005624e7d8af10 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-yjit.20240223-034333", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-yjit.20240223-034333>, @binmode=false, @mon_data=#<Monitor:0x00005624e7d8ae48>, @mon_data_owner_object_id=860>>>
$$$[beg] make update-unicode  -j4
make: Nothing to be done for 'update-unicode'.
$$$[end] "make update-unicode  -j4" exit with 0.
$$$[beg] make update-download -j4
tool/config.guess already exists
tool/config.sub already exists
Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622
Update debug to 2d602636d99114d55a32fedd652c9c704446a749
Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d
echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision -
Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50
echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision -
echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision -
echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision -
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision unchanged
$$$[end] "make update-download -j4" exit with 0.
$$$[beg] make update-rubyspec -j4
make: Nothing to be done for 'update-rubyspec'.
$$$[end] "make update-rubyspec -j4" exit with 0.
$$$[beg] make update-src      -j4
From https://github.com/ruby/ruby
   548151d..a154ea0  master     -> origin/master
Updating 548151d..a154ea0
Fast-forward
 common.mk                                          |  37 ++++
 lib/prism/node_ext.rb                              |  14 --
 lib/prism/prism.gemspec                            |   2 +
 prism/config.yml                                   |   7 +
 prism/defines.h                                    |  12 ++
 prism/diagnostic.c                                 |   2 +
 prism/diagnostic.h                                 |   2 +
 prism/extension.c                                  |  29 +++
 prism/extension.h                                  |   6 +-
 prism/prism.c                                      | 114 ++++++++++--
 prism/prism.h                                      |   2 +
 prism/templates/ext/prism/api_node.c.erb           |  45 +++--
 prism/templates/include/prism/ast.h.erb            |   3 +
 prism/templates/lib/prism/dot_visitor.rb.erb       |   2 +-
 prism/templates/lib/prism/dsl.rb.erb               |   3 +-
 prism/templates/lib/prism/node.rb.erb              |   2 +-
 prism/templates/lib/prism/serialize.rb.erb         |  19 ++
 prism/templates/src/node.c.erb                     |  49 +++--
 prism/templates/src/prettyprint.c.erb              |  32 ++++
 prism/templates/src/serialize.c.erb                |  16 +-
 prism/templates/template.rb                        |  34 ++++
 prism/util/pm_buffer.c                             |   9 +
 prism/util/pm_buffer.h                             |   8 +
 prism/util/pm_integer.c                            | 176 ++++++++++++++++++
 prism/util/pm_integer.h                            | 104 +++++++++++
 prism_compile.c                                    | 104 ++++++-----
 test/prism/errors_test.rb                          |   8 +-
 test/prism/integer_parse_test.rb                   |  37 ++++
 test/prism/snapshots/alias.txt                     |   3 +-
 test/prism/snapshots/arithmetic.txt                |   9 +-
 test/prism/snapshots/arrays.txt                    | 120 ++++++++-----
 test/prism/snapshots/blocks.txt                    |  18 +-
 test/prism/snapshots/break.txt                     |  57 ++++--
 test/prism/snapshots/case.txt                      |  45 +++--
 test/prism/snapshots/classes.txt                   |  21 ++-
 test/prism/snapshots/command_method_call.txt       | 114 ++++++++----
 test/prism/snapshots/constants.txt                 |  15 +-
 test/prism/snapshots/dash_heredocs.txt             |   6 +-
 test/prism/snapshots/defined.txt                   |  12 +-
 test/prism/snapshots/emoji_method_calls.txt        |   3 +-
 test/prism/snapshots/endless_methods.txt           |  12 +-
 .../snapshots/endless_range_in_conditional.txt     |  12 +-
 test/prism/snapshots/for.txt                       |  36 ++--
 test/prism/snapshots/hashes.txt                    |   9 +-
 test/prism/snapshots/heredocs_nested.txt           |   3 +-
 test/prism/snapshots/if.txt                        |  24 ++-
 test/prism/snapshots/integer_operations.txt        | 198 ++++++++++++++-------
 test/prism/snapshots/lambda.txt                    |   3 +-
 test/prism/snapshots/method_calls.txt              |  51 ++++--
 test/prism/snapshots/methods.txt                   |  87 ++++++---
 test/prism/snapshots/modules.txt                   |   9 +-
 test/prism/snapshots/next.txt                      |  51 ++++--
 test/prism/snapshots/nils.txt                      |   6 +-
 test/prism/snapshots/numbers.txt                   |  92 +++++++---
 test/prism/snapshots/patterns.txt                  | 108 +++++++----
 test/prism/snapshots/procs.txt                     |   9 +-
 .../prism/snapshots/range_begin_open_exclusive.txt |   3 +-
 .../prism/snapshots/range_begin_open_inclusive.txt |   3 +-
 test/prism/snapshots/range_end_open_exclusive.txt  |   3 +-
 test/prism/snapshots/range_end_open_inclusive.txt  |   3 +-
 test/prism/snapshots/ranges.txt                    | 123 ++++++++-----
 test/prism/snapshots/regex.txt                     |   3 +-
 test/prism/snapshots/repeat_parameters.txt         |  12 +-
 test/prism/snapshots/rescue.txt                    |  12 +-
 test/prism/snapshots/return.txt                    |  51 ++++--
 test/prism/snapshots/seattlerb/BEGIN.txt           |   3 +-
 .../snapshots/seattlerb/TestRubyParserShared.txt   |   6 +-
 .../prism/snapshots/seattlerb/aref_args_assocs.txt |   6 +-
 .../snapshots/seattlerb/aref_args_lit_assocs.txt   |   9 +-
 test/prism/snapshots/seattlerb/args_kw_block.txt   |   3 +-
 .../snapshots/seattlerb/array_line_breaks.txt      |   3 +-
 test/prism/snapshots/seattlerb/assoc_label.txt     |   3 +-
 .../snapshots/seattlerb/attr_asgn_colon_id.txt     |   3 +-
 .../snapshots/seattlerb/attrasgn_array_arg.txt     |   9 +-
 .../snapshots/seattlerb/attrasgn_array_lhs.txt     |  12 +-
 .../seattlerb/attrasgn_primary_dot_constant.txt    |   3 +-
 test/prism/snapshots/seattlerb/bang_eq.txt         |   6 +-
 test/prism/snapshots/seattlerb/bdot2.txt           |   3 +-
 test/prism/snapshots/seattlerb/bdot3.txt           |   3 +-
 .../seattlerb/begin_rescue_else_ensure_bodies.txt  |  12 +-
 .../seattlerb/block_arg_opt_arg_block.txt          |   3 +-
 .../snapshots/seattlerb/block_arg_opt_splat.txt    |   3 +-
 .../block_arg_opt_splat_arg_block_omfg.txt         |   3 +-
 .../snapshots/seattlerb/block_arg_optional.txt     |   3 +-
 test/prism/snapshots/seattlerb/block_args_opt1.txt |   3 +-
 test/prism/snapshots/seattlerb/block_args_opt2.txt |   6 +-
 .../snapshots/seattlerb/block_args_opt2_2.txt      |   6 +-
 test/prism/snapshots/seattlerb/block_args_opt3.txt |   6 +-
 test/prism/snapshots/seattlerb/block_kw.txt        |   3 +-
 test/prism/snapshots/seattlerb/block_opt_arg.txt   |   3 +-
 test/prism/snapshots/seattlerb/block_opt_splat.txt |   3 +-
 .../seattlerb/block_opt_splat_arg_block_omfg.txt   |   3 +-
 test/prism/snapshots/seattlerb/bug202.txt          |   6 +-
 .../seattlerb/bug_call_arglist_parens.txt          |  18 +-
 test/prism/snapshots/seattlerb/call_and.txt        |   6 +-
 test/prism/snapshots/seattlerb/call_arg_assoc.txt  |   9 +-
 .../snapshots/seattlerb/call_arg_assoc_kwsplat.txt |   9 +-
 .../prism/snapshots/seattlerb/call_arg_kwsplat.txt |   3 +-
 .../snapshots/seattlerb/call_args_assoc_quoted.txt |   9 +-
 .../seattlerb/call_args_assoc_trailing_comma.txt   |   9 +-
 .../snapshots/seattlerb/call_args_command.txt      |   3 +-
 test/prism/snapshots/seattlerb/call_array_arg.txt  |   3 +-
 .../seattlerb/call_array_lit_inline_hash.txt       |   3 +-
 test/prism/snapshots/seattlerb/call_assoc.txt      |   6 +-
 test/prism/snapshots/seattlerb/call_assoc_new.txt  |   3 +-
 .../seattlerb/call_assoc_new_if_multiline.txt      |   6 +-
 .../seattlerb/call_assoc_trailing_comma.txt        |   6 +-
 .../snapshots/seattlerb/call_bang_command_call.txt |   3 +-
 .../snapshots/seattlerb/call_bang_squiggle.txt     |   6 +-
 test/prism/snapshots/seattlerb/call_carat.txt      |   6 +-
 .../snapshots/seattlerb/call_colon_parens.txt      |   3 +-
 test/prism/snapshots/seattlerb/call_div.txt        |   6 +-
 test/prism/snapshots/seattlerb/call_dot_parens.txt |   3 +-
 test/prism/snapshots/seattlerb/call_eq3.txt        |   6 +-
 test/prism/snapshots/seattlerb/call_gt.txt         |   6 +-
 test/prism/snapshots/seattlerb/call_kwsplat.txt    |   3 +-
 test/prism/snapshots/seattlerb/call_lt.txt         |   6 +-
 test/prism/snapshots/seattlerb/call_lte.txt        |   6 +-
 test/prism/snapshots/seattlerb/call_not.txt        |   3 +-
 test/prism/snapshots/seattlerb/call_pipe.txt       |   6 +-
 test/prism/snapshots/seattlerb/call_rshift.txt     |   6 +-
 .../snapshots/seattlerb/call_self_brackets.txt     |   3 +-
 test/prism/snapshots/seattlerb/call_spaceship.txt  |   6 +-
 .../seattlerb/call_stabby_do_end_with_block.txt    |   6 +-
 .../seattlerb/call_stabby_with_braces_block.txt    |   6 +-
 test/prism/snapshots/seattlerb/call_star.txt       |   6 +-
 test/prism/snapshots/seattlerb/call_star2.txt      |   6 +-
 .../snapshots/seattlerb/call_trailing_comma.txt    |   3 +-
 test/prism/snapshots/seattlerb/call_unary_bang.txt |   3 +-
 test/prism/snapshots/seattlerb/case_in.txt         |  18 +-
 test/prism/snapshots/seattlerb/case_in_67.txt      |   3 +-
 .../seattlerb/case_in_hash_pat_paren_assign.txt    |   3 +-
 .../prism/snapshots/seattlerb/cond_unary_minus.txt |   3 +-
 .../snapshots/seattlerb/const_2_op_asgn_or2.txt    |   3 +-
 .../snapshots/seattlerb/const_3_op_asgn_or.txt     |   3 +-
 .../snapshots/seattlerb/const_op_asgn_and1.txt     |   3 +-
 .../snapshots/seattlerb/const_op_asgn_and2.txt     |   3 +-
 .../prism/snapshots/seattlerb/const_op_asgn_or.txt |   3 +-
 .../snapshots/seattlerb/defined_eh_parens.txt      |   3 +-
 .../snapshots/seattlerb/defn_endless_command.txt   |   3 +-
 .../seattlerb/defn_endless_command_rescue.txt      |   6 +-
 .../prism/snapshots/seattlerb/defn_kwarg_kwarg.txt |   6 +-
 .../snapshots/seattlerb/defn_kwarg_kwsplat.txt     |   3 +-
 .../seattlerb/defn_kwarg_kwsplat_anon.txt          |   3 +-
 .../snapshots/seattlerb/defn_kwarg_no_parens.txt   |   3 +-
 test/prism/snapshots/seattlerb/defn_kwarg_val.txt  |   3 +-
 .../snapshots/seattlerb/defn_oneliner_eq2.txt      |   3 +-
 .../snapshots/seattlerb/defn_opt_splat_arg.txt     |   3 +-
 .../snapshots/seattlerb/defs_endless_command.txt   |   3 +-
 .../seattlerb/defs_endless_command_rescue.txt      |   6 +-
 test/prism/snapshots/seattlerb/defs_kwarg.txt      |   3 +-
 .../snapshots/seattlerb/defs_oneliner_eq2.txt      |   3 +-
 .../seattlerb/difficult1_line_numbers.txt          |  42 +++--
 .../seattlerb/difficult1_line_numbers2.txt         |   6 +-
 test/prism/snapshots/seattlerb/difficult2_.txt     |   9 +-
 .../seattlerb/difficult4__leading_dots2.txt        |   6 +-
 test/prism/snapshots/seattlerb/difficult6__7.txt   |   3 +-
 test/prism/snapshots/seattlerb/difficult6__8.txt   |   3 +-
 test/prism/snapshots/seattlerb/do_bug.txt          |   3 +-
 .../snapshots/seattlerb/eq_begin_line_numbers.txt  |   6 +-
 ...eq_begin_why_wont_people_use_their_spacebar.txt |   3 +-
 test/prism/snapshots/seattlerb/f_kw.txt            |   3 +-
 .../snapshots/seattlerb/float_with_if_modifier.txt |   1 +
 test/prism/snapshots/seattlerb/heredoc_lineno.txt  |   3 +-
 test/prism/snapshots/seattlerb/heredoc_nested.txt  |   3 +-
 .../seattlerb/heredoc_squiggly_interp.txt          |   3 +-
 test/prism/snapshots/seattlerb/if_elsif.txt        |   6 +-
 .../seattlerb/integer_with_if_modifier.txt         |   3 +-
 .../interpolated_symbol_array_line_breaks.txt      |   3 +-
 .../interpolated_word_array_line_breaks.txt        |   3 +-
 test/prism/snapshots/seattlerb/iter_args_10_1.txt  |   3 +-
 test/prism/snapshots/seattlerb/iter_args_10_2.txt  |   3 +-
 test/prism/snapshots/seattlerb/iter_args_11_1.txt  |   3 +-
 test/prism/snapshots/seattlerb/iter_args_11_2.txt  |   3 +-
 test/prism/snapshots/seattlerb/iter_args_6.txt     |   3 +-
 test/prism/snapshots/seattlerb/iter_args_7_1.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_args_7_2.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_args_8_1.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_args_8_2.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_args_9_1.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_args_9_2.txt   |   3 +-
 test/prism/snapshots/seattlerb/iter_kwarg.txt      |   3 +-
 .../snapshots/seattlerb/iter_kwarg_kwsplat.txt     |   3 +-
 .../snapshots/seattlerb/lasgn_arg_rescue_arg.txt   |   6 +-
 .../seattlerb/lasgn_call_bracket_rescue_arg.txt    |   6 +-
 .../seattlerb/lasgn_call_nobracket_rescue_arg.txt  |   6 +-
 test/prism/snapshots/seattlerb/lasgn_command.txt   |   3 +-
 test/prism/snapshots/seattlerb/lasgn_env.txt       |   3 +-
 test/prism/snapshots/seattlerb/lasgn_ivar_env.txt  |   3 +-
 .../seattlerb/lasgn_lasgn_command_call.txt         |   3 +-
 test/prism/snapshots/seattlerb/masgn_colon2.txt    |   6 +-
 test/prism/snapshots/seattlerb/masgn_colon3.txt    |   6 +-
 .../snapshots/seattlerb/masgn_command_call.txt     |   3 +-
 test/prism/snapshots/seattlerb/masgn_lhs_splat.txt |   9 +-
 test/prism/snapshots/seattlerb/masgn_star.txt      |   3 +-
 .../seattlerb/method_call_assoc_trailing_comma.txt |   6 +-
 .../seattlerb/method_call_trailing_comma.txt       |   3 +-
 test/prism/snapshots/seattlerb/mlhs_rescue.txt     |   3 +-
 .../non_interpolated_symbol_array_line_breaks.txt  |   3 +-
 .../non_interpolated_word_array_line_breaks.txt    |   3 +-
 .../snapshots/seattlerb/op_asgn_command_call.txt   |   3 +-
 .../seattlerb/op_asgn_dot_ident_command_call.txt   |   3 +-
 .../seattlerb/op_asgn_index_command_call.txt       |   6 +-
 .../op_asgn_primary_colon_identifier1.txt          |   3 +-
 .../op_asgn_val_dot_ident_command_call.txt         |   3 +-
 .../prism/snapshots/seattlerb/parse_line_block.txt |   3 +-
 .../seattlerb/parse_line_defn_complex.txt          |   3 +-
 test/prism/snapshots/seattlerb/parse_line_dot2.txt |   6 +-
 .../snapshots/seattlerb/parse_line_dot2_open.txt   |   3 +-
 test/prism/snapshots/seattlerb/parse_line_dot3.txt |   6 +-
 .../snapshots/seattlerb/parse_line_dot3_open.txt   |   3 +-
 .../snapshots/seattlerb/parse_line_hash_lit.txt    |   3 +-
 .../seattlerb/parse_line_multiline_str.txt         |   3 +-
 .../parse_line_multiline_str_literal_n.txt         |   3 +-
 .../snapshots/seattlerb/parse_line_return.txt      |   3 +-
 .../seattlerb/parse_opt_call_args_assocs_comma.txt |   9 +-
 .../seattlerb/parse_opt_call_args_lit_comma.txt    |   6 +-
 .../snapshots/seattlerb/parse_pattern_019.txt      |   9 +-
 .../snapshots/seattlerb/parse_pattern_051.txt      |  15 +-
 .../snapshots/seattlerb/parse_pattern_058.txt      |   3 +-
 .../snapshots/seattlerb/parse_pattern_058_2.txt    |   3 +-
 .../snapshots/seattlerb/parse_pattern_069.txt      |   6 +-
 .../snapshots/seattlerb/parse_pattern_076.txt      |   6 +-
 test/prism/snapshots/seattlerb/qsymbols_interp.txt |   6 +-
 .../snapshots/seattlerb/return_call_assocs.txt     |  27 ++-
 test/prism/snapshots/seattlerb/rhs_asgn.txt        |   3 +-
 test/prism/snapshots/seattlerb/ruby21_numbers.txt  |   9 +-
 test/prism/snapshots/seattlerb/safe_attrasgn.txt   |   3 +-
 .../snapshots/seattlerb/safe_attrasgn_constant.txt |   3 +-
 .../snapshots/seattlerb/safe_call_operator.txt     |   3 +-
 test/prism/snapshots/seattlerb/safe_calls.txt      |   3 +-
 test/prism/snapshots/seattlerb/safe_op_asgn.txt    |   3 +-
 .../stabby_arg_opt_splat_arg_block_omfg.txt        |   3 +-
 .../stabby_block_iter_call_no_target_with_arg.txt  |   3 +-
 test/prism/snapshots/seattlerb/stabby_block_kw.txt |   3 +-
 .../seattlerb/str_newline_hash_line_number.txt     |   3 +-
 .../snapshots/seattlerb/str_pct_nested_nested.txt  |   3 +-
 test/prism/snapshots/seattlerb/super_arg.txt       |   3 +-
 test/prism/snapshots/seattlerb/thingy.txt          |   6 +-
 test/prism/snapshots/seattlerb/uminus_float.txt    |   1 +
 test/prism/snapshots/seattlerb/utf8_bom.txt        |   3 +-
 test/prism/snapshots/seattlerb/words_interp.txt    |   3 +-
 test/prism/snapshots/seattlerb/yield_arg.txt       |   3 +-
 .../snapshots/seattlerb/yield_call_assocs.txt      |  27 ++-
 test/prism/snapshots/super.txt                     |  30 ++--
 test/prism/snapshots/symbols.txt                   |  22 ++-
 test/prism/snapshots/ternary_operator.txt          |   6 +-
 test/prism/snapshots/tilde_heredocs.txt            |  21 ++-
 test/prism/snapshots/undef.txt                     |   3 +-
 test/prism/snapshots/unless.txt                    |  12 +-
 .../unparser/corpus/literal/assignment.txt         | 120 ++++++++-----
 .../snapshots/unparser/corpus/literal/block.txt    |   3 +-
 .../snapshots/unparser/corpus/literal/case.txt     |   3 +-
 .../snapshots/unparser/corpus/literal/control.txt  |  33 ++--
 .../snapshots/unparser/corpus/literal/def.txt      |   3 +-
 .../snapshots/unparser/corpus/literal/defined.txt  |   6 +-
 .../snapshots/unparser/corpus/literal/defs.txt     |   3 +-
 .../snapshots/unparser/corpus/literal/dstr.txt     |   3 +-
 .../snapshots/unparser/corpus/literal/flipflop.txt |  12 +-
 .../prism/snapshots/unparser/corpus/literal/if.txt |  24 ++-
 .../snapshots/unparser/corpus/literal/literal.txt  | 105 +++++++----
 .../snapshots/unparser/corpus/literal/opasgn.txt   |  60 ++++---
 .../snapshots/unparser/corpus/literal/pattern.txt  |  51 ++++--
 .../snapshots/unparser/corpus/literal/range.txt    |  18 +-
 .../snapshots/unparser/corpus/literal/send.txt     |  27 ++-
 .../snapshots/unparser/corpus/literal/since/27.txt |   3 +-
 .../snapshots/unparser/corpus/literal/since/30.txt |  15 +-
 .../snapshots/unparser/corpus/literal/unary.txt    |   9 +-
 .../snapshots/unparser/corpus/literal/while.txt    |   6 +-
 .../snapshots/unparser/corpus/semantic/literal.txt |  15 +-
 .../snapshots/unparser/corpus/semantic/send.txt    |   3 +-
 test/prism/snapshots/until.txt                     |   6 +-
 test/prism/snapshots/variables.txt                 |  87 ++++++---
 test/prism/snapshots/while.txt                     |   6 +-
 test/prism/snapshots/whitequark/and_asgn.txt       |  12 +-
 test/prism/snapshots/whitequark/args.txt           |  36 ++--
 .../snapshots/whitequark/args_args_assocs.txt      |   6 +-
 .../whitequark/args_args_assocs_comma.txt          |   3 +-
 test/prism/snapshots/whitequark/args_assocs.txt    |  18 +-
 .../snapshots/whitequark/args_assocs_comma.txt     |   3 +-
 .../snapshots/whitequark/args_assocs_legacy.txt    |  18 +-
 test/prism/snapshots/whitequark/array_assocs.txt   |  15 +-
 test/prism/snapshots/whitequark/array_plain.txt    |   6 +-
 test/prism/snapshots/whitequark/array_splat.txt    |   9 +-
 test/prism/snapshots/whitequark/asgn_mrhs.txt      |   3 +-
 test/prism/snapshots/whitequark/begin_cmdarg.txt   |   6 +-
 .../whitequark/beginless_erange_after_newline.txt  |   3 +-
 .../whitequark/beginless_irange_after_newline.txt  |   3 +-
 .../prism/snapshots/whitequark/beginless_range.txt |   6 +-
 test/prism/snapshots/whitequark/blockargs.txt      |  36 ++--
 test/prism/snapshots/whitequark/bug_447.txt        |   3 +-
 test/prism/snapshots/whitequark/bug_452.txt        |   3 +-
 test/prism/snapshots/whitequark/bug_466.txt        |   6 +-
 test/prism/snapshots/whitequark/bug_481.txt        |   3 +-
 .../snapshots/whitequark/bug_interp_single.txt     |   6 +-
 test/prism/snapshots/whitequark/casgn_scoped.txt   |   3 +-
 test/prism/snapshots/whitequark/casgn_toplevel.txt |   3 +-
 test/prism/snapshots/whitequark/casgn_unscoped.txt |   3 +-
 test/prism/snapshots/whitequark/complex.txt        |   8 +-
 test/prism/snapshots/whitequark/const_op_asgn.txt  |  15 +-
 test/prism/snapshots/whitequark/cvasgn.txt         |   3 +-
 test/prism/snapshots/whitequark/endless_method.txt |  12 +-
 .../whitequark/endless_method_with_rescue_mod.txt  |  12 +-
 .../whitequark/endless_method_without_args.txt     |  12 +-
 test/prism/snapshots/whitequark/float.txt          |   2 +
 .../whitequark/forward_arg_with_open_args.txt      |   9 +-
 test/prism/snapshots/whitequark/gvasgn.txt         |   3 +-
 .../prism/snapshots/whitequark/hash_hashrocket.txt |  12 +-
 test/prism/snapshots/whitequark/hash_kwsplat.txt   |   3 +-
 test/prism/snapshots/whitequark/hash_label.txt     |   3 +-
 test/prism/snapshots/whitequark/hash_label_end.txt |   9 +-
 test/prism/snapshots/whitequark/if_elsif.txt       |   6 +-
 test/prism/snapshots/whitequark/int.txt            |   9 +-
 test/prism/snapshots/whitequark/ivasgn.txt         |   3 +-
 test/prism/snapshots/whitequark/kwoptarg.txt       |   3 +-
 .../whitequark/lparenarg_after_lvar__since_25.txt  |   2 +
 test/prism/snapshots/whitequark/lvasgn.txt         |   3 +-
 test/prism/snapshots/whitequark/masgn.txt          |  18 +-
 test/prism/snapshots/whitequark/masgn_attr.txt     |   6 +-
 .../whitequark/multiple_pattern_matches.txt        |  12 +-
 .../whitequark/newline_in_hash_argument.txt        |  12 +-
 .../whitequark/non_lvar_injecting_match.txt        |   3 +-
 test/prism/snapshots/whitequark/op_asgn.txt        |   9 +-
 test/prism/snapshots/whitequark/op_asgn_index.txt  |   9 +-
 .../snapshots/whitequark/op_asgn_index_cmd.txt     |   6 +-
 test/prism/snapshots/whitequark/optarg.txt         |   9 +-
 test/prism/snapshots/whitequark/or_asgn.txt        |  12 +-
 .../pattern_matching__FILE__LINE_literals.txt      |   3 +-
 .../whitequark/pattern_matching_blank_else.txt     |   9 +-
 .../snapshots/whitequark/pattern_matching_else.txt |  12 +-
 .../whitequark/pattern_matching_single_line.txt    |   6 +-
 ...single_line_allowed_omission_of_parentheses.txt |  18 +-
 test/prism/snapshots/whitequark/postexe.txt        |   3 +-
 test/prism/snapshots/whitequark/preexe.txt         |   3 +-
 .../prism/snapshots/whitequark/range_exclusive.txt |   6 +-
 .../prism/snapshots/whitequark/range_inclusive.txt |   6 +-
 test/prism/snapshots/whitequark/rational.txt       |   4 +-
 .../snapshots/whitequark/rescue_mod_masgn.txt      |   6 +-
 test/prism/snapshots/whitequark/ruby_bug_10279.txt |   3 +-
 test/prism/snapshots/whitequark/ruby_bug_10653.txt |   6 +-
 test/prism/snapshots/whitequark/ruby_bug_11380.txt |   3 +-
 .../snapshots/whitequark/ruby_bug_11873_a.txt      |  24 ++-
 test/prism/snapshots/whitequark/ruby_bug_12073.txt |   6 +-
 test/prism/snapshots/whitequark/ruby_bug_12402.txt |   6 +-
 test/prism/snapshots/whitequark/ruby_bug_9669.txt  |   3 +-
 test/prism/snapshots/whitequark/send_attr_asgn.txt |  12 +-
 .../whitequark/send_attr_asgn_conditional.txt      |   3 +-
 test/prism/snapshots/whitequark/send_binary_op.txt |  63 ++++---
 .../snapshots/whitequark/send_block_chain_cmd.txt  |  21 ++-
 test/prism/snapshots/whitequark/send_call.txt      |   6 +-
 test/prism/snapshots/whitequark/send_index.txt     |   6 +-
 .../prism/snapshots/whitequark/send_index_asgn.txt |   9 +-
 .../whitequark/send_index_asgn_legacy.txt          |   9 +-
 .../snapshots/whitequark/send_index_legacy.txt     |   6 +-
 .../whitequark/send_lambda_args_noparen.txt        |   3 +-
 .../whitequark/send_op_asgn_conditional.txt        |   3 +-
 test/prism/snapshots/whitequark/send_self.txt      |   3 +-
 .../prism/snapshots/whitequark/send_self_block.txt |   3 +-
 test/prism/snapshots/whitequark/space_args_arg.txt |   3 +-
 .../snapshots/whitequark/space_args_arg_block.txt  |   9 +-
 .../snapshots/whitequark/space_args_arg_call.txt   |   3 +-
 .../whitequark/space_args_arg_newline.txt          |   3 +-
 test/prism/snapshots/whitequark/ternary.txt        |   6 +-
 .../whitequark/ternary_ambiguous_symbol.txt        |   3 +-
 .../snapshots/whitequark/trailing_forward_arg.txt  |   3 +-
 .../whitequark/unary_num_pow_precedence.txt        |  14 +-
 test/prism/snapshots/whitequark/undef.txt          |   3 +-
 test/prism/snapshots/whitequark/var_and_asgn.txt   |   3 +-
 test/prism/snapshots/whitequark/var_op_asgn.txt    |  12 +-
 test/prism/snapshots/whitequark/var_or_asgn.txt    |   3 +-
 test/prism/snapshots/whitequark/when_splat.txt     |   3 +-
 test/prism/snapshots/yield.txt                     |  12 +-
 372 files changed, 3270 insertions(+), 1345 deletions(-)
 create mode 100644 prism/util/pm_integer.c
 create mode 100644 prism/util/pm_integer.h
 create mode 100644 test/prism/integer_parse_test.rb
Latest commit hash = a154ea0c91
$$$[end] "make update-src      -j4" exit with 0.
$$$[beg] make after-update    -j4
sed 's/{\$([^(){}]*)[^{}]*}//g' /tmp/ruby/src/trunk-yjit/common.mk > uncommon.mk
/tmp/ruby/src/trunk-yjit/revision.h updated
generating /tmp/ruby/src/trunk-yjit/ext/ripper/eventids2table.c
make[1]: Entering directory '/tmp/ruby/src/trunk-yjit/ext/ripper'
make[1]: Nothing to be done for 'src'.
make[1]: Leaving directory '/tmp/ruby/src/trunk-yjit/ext/ripper'
generating x86_64-linux-fake.rb
x86_64-linux-fake.rb updated
/bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp
rbconfig.rb unchanged
generating enc.mk
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622
Update debug to 2d602636d99114d55a32fedd652c9c704446a749
Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d
echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision -
Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50
echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision -
echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision -
echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision -
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision unchanged
$$$[end] "make after-update    -j4" exit with 0.
$$$[beg] make miniruby -j4
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = -j4 --jobserver-auth=4,5
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

compiling /tmp/ruby/src/trunk-yjit/miniinit.c
compiling /tmp/ruby/src/trunk-yjit/ast.c
compiling /tmp/ruby/src/trunk-yjit/compile.c
compiling /tmp/ruby/src/trunk-yjit/cont.c
compiling /tmp/ruby/src/trunk-yjit/eval.c
compiling /tmp/ruby/src/trunk-yjit/gc.c
compiling /tmp/ruby/src/trunk-yjit/hash.c
compiling /tmp/ruby/src/trunk-yjit/iseq.c
compiling /tmp/ruby/src/trunk-yjit/load.c
compiling /tmp/ruby/src/trunk-yjit/rjit.c
compiling /tmp/ruby/src/trunk-yjit/rjit_c.c
compiling /tmp/ruby/src/trunk-yjit/proc.c
compiling /tmp/ruby/src/trunk-yjit/ruby.c
compiling /tmp/ruby/src/trunk-yjit/thread.c
compiling /tmp/ruby/src/trunk-yjit/version.c
compiling /tmp/ruby/src/trunk-yjit/vm.c
compiling /tmp/ruby/src/trunk-yjit/vm_backtrace.c
compiling /tmp/ruby/src/trunk-yjit/vm_dump.c
compiling /tmp/ruby/src/trunk-yjit/vm_trace.c
compiling prism/api_node.c
compiling /tmp/ruby/src/trunk-yjit/prism/api_pack.c
compiling /tmp/ruby/src/trunk-yjit/prism/diagnostic.c
compiling /tmp/ruby/src/trunk-yjit/prism/encoding.c
compiling /tmp/ruby/src/trunk-yjit/prism/extension.c
compiling prism/node.c
compiling /tmp/ruby/src/trunk-yjit/prism/options.c
compiling /tmp/ruby/src/trunk-yjit/prism/pack.c
compiling prism/prettyprint.c
compiling /tmp/ruby/src/trunk-yjit/prism/regexp.c
compiling prism/serialize.c
compiling prism/token_type.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_buffer.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_char.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_constant_pool.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_integer.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_list.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_memchr.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_newline_list.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_state_stack.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_string.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_string_list.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_strncasecmp.c
compiling /tmp/ruby/src/trunk-yjit/prism/util/pm_strpbrk.c
compiling /tmp/ruby/src/trunk-yjit/prism/prism.c
compiling /tmp/ruby/src/trunk-yjit/prism_init.c
compiling /tmp/ruby/src/trunk-yjit/yjit.c
linking miniruby
$$$[end] "make miniruby -j4" exit with 0.
$$$[beg] make ruby -j4
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = -j4 --jobserver-auth=4,5
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

creating verconf.h
verconf.h updated
compiling /tmp/ruby/src/trunk-yjit/loadpath.c
builtin_binary.inc updated
60a064c39ab14ff45cb02c0bf314fb72b5b7c8e11f5c398b6c2de08ba21cc065  builtin_binary.inc
compiling /tmp/ruby/src/trunk-yjit/builtin.c
linking static-library libruby-static.a
linking ruby
$$$[end] "make ruby -j4" exit with 0.
$$$[beg] make all -j4
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = -j4 --jobserver-auth=4,5
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

generating encdb.h
generating enc.mk
encdb.h unchanged
making srcs under enc
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
making trans
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-yjit/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
$$$[end] "make all -j4" exit with 0.
$$$[beg] make install -j4
Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622
Update debug to 2d602636d99114d55a32fedd652c9c704446a749
Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d
Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50
echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision -
echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision -
echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision -
echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /tmp/ruby/src/trunk-yjit/tool/ifchange /tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision -
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/debug.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/minitest.revision unchanged
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/bigdecimal.revision unchanged
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = -j4 --jobserver-auth=4,5
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
/tmp/ruby/src/trunk-yjit/.bundle/.timestamp/drb.revision unchanged
generating encdb.h
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

generating enc.mk
encdb.h unchanged
making srcs under enc
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-yjit/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making encs
ext/configure-ext.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
./miniruby -I/tmp/ruby/src/trunk-yjit/lib -I. -I.ext/common  /tmp/ruby/src/trunk-yjit/tool/runruby.rb --extout=.ext  -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-yjit/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j4 --jobserver-auth=4,5" --make-flags=" -j4 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="man"  --gnumake --install=all --exclude=doc
Installing to 
installing binary commands:         /tmp/ruby/install/trunk-yjit/bin
installing base libraries:          /tmp/ruby/install/trunk-yjit/lib
installing arch files:              /tmp/ruby/install/trunk-yjit/lib/ruby/3.4.0+0/x86_64-linux
installing pkgconfig data:          /tmp/ruby/install/trunk-yjit/lib/pkgconfig
installing extension objects:       /tmp/ruby/install/trunk-yjit/lib/ruby/3.4.0+0/x86_64-linux
installing extension objects:       /tmp/ruby/install/trunk-yjit/lib/ruby/site_ruby/3.4.0+0/x86_64-linux
installing extension objects:       /tmp/ruby/install/trunk-yjit/lib/ruby/vendor_ruby/3.4.0+0/x86_64-linux
installing extension headers:       /tmp/ruby/install/trunk-yjit/include/ruby-3.4.0+0/x86_64-linux
installing extension scripts:       /tmp/ruby/install/trunk-yjit/lib/ruby/3.4.0+0
installing extension scripts:       /tmp/ruby/install/trunk-yjit/lib/ruby/site_ruby/3.4.0+0
installing extension scripts:       /tmp/ruby/install/trunk-yjit/lib/ruby/vendor_ruby/3.4.0+0
installing extension headers:       /tmp/ruby/install/trunk-yjit/include/ruby-3.4.0+0/ruby
installing command scripts:         /tmp/ruby/install/trunk-yjit/bin
installing library scripts:         /tmp/ruby/install/trunk-yjit/lib/ruby/3.4.0+0
installing common headers:          /tmp/ruby/install/trunk-yjit/include/ruby-3.4.0+0
installing manpages:                /tmp/ruby/install/trunk-yjit/share/man/man1
installing default gems from lib:   /tmp/ruby/install/trunk-yjit/lib/ruby/gems/3.4.0+0
                                    benchmark 0.3.0
                                    bundler 2.6.0.dev
                                    cgi 0.4.1
                                    delegate 0.3.1
                                    did_you_mean 1.6.3
                                    english 0.8.0
                                    erb 4.0.4
                                    error_highlight 0.6.0
                                    fileutils 1.7.2
                                    find 0.2.0
                                    forwardable 1.3.3
                                    ipaddr 1.2.6
                                    irb 1.11.2
                                    logger 1.6.0
                                    net-http 0.4.1
                                    net-protocol 0.2.2
                                    open-uri 0.4.1
                                    open3 0.2.1
                                    optparse 0.4.0
                                    ostruct 0.6.0
                                    pp 0.5.0
                                    prettyprint 0.2.0
                                    prism 0.24.0
                                    pstore 0.1.3
                                    rdoc 6.6.2
                                    readline 0.0.4
                                    reline 0.4.2
                                    resolv 0.3.0
                                    ruby2_keywords 0.0.5
                                    securerandom 0.3.1
                                    set 1.1.0
                                    shellwords 0.2.0
                                    singleton 0.2.0
                                    syntax_suggest 2.0.0
                                    tempfile 0.2.1
                                    time 0.3.0
                                    timeout 0.4.1
                                    tmpdir 0.2.0
                                    tsort 0.2.0
                                    un 0.3.0
                                    uri 0.13.0
                                    weakref 0.1.3
                                    yaml 0.3.0
installing default gems from ext:   /tmp/ruby/install/trunk-yjit/lib/ruby/gems/3.4.0+0
                                    date 3.3.4
                                    digest 3.1.1
                                    etc 1.4.3
                                    fcntl 1.1.0
                                    fiddle 1.1.3
                                    io-console 0.7.2
                                    io-nonblock 0.3.0
                                    io-wait 0.3.1
                                    json 2.7.1
                                    openssl 3.2.0
                                    pathname 0.3.0
                                    psych 5.1.2
                                    stringio 3.1.1
                                    strscan 3.1.1
                                    zlib 3.1.0
installing bundled gems:            /tmp/ruby/install/trunk-yjit/lib/ruby/gems/3.4.0+0
                                    minitest 5.22.2
                                    power_assert 2.0.3
                                    rake 13.1.0
                                    test-unit 3.6.2
                                    rexml 3.2.6
                                    rss 0.3.0
                                    net-ftp 0.3.4
                                    net-imap 0.4.10
                                    net-pop 0.1.2
                                    net-smtp 0.4.0.1
                                    matrix 0.4.2
                                    prime 0.1.2
                                    rbs 3.4.4
                                    typeprof 0.21.11
                                    debug 1.9.1
                                    racc 1.7.3
                                    mutex_m 0.2.0
                                    getoptlong 0.2.1
                                    base64 0.2.0
                                    bigdecimal 3.1.6
                                    observer 0.1.2
                                    abbrev 0.1.2
                                    resolv-replace 0.1.1
                                    rinda 0.2.0
                                    drb 2.2.0
                                    nkf 0.2.0
                                    syslog 0.1.2
                                    csv 3.2.8
installing bundled gem cache:       /tmp/ruby/install/trunk-yjit/lib/ruby/gems/3.4.0+0/cache
$$$[end] "make install -j4" exit with 0.
$$$[beg] make yes-btest TESTOPTS='-q -j4'
PASS all 1895 tests
 
$$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0.
$$$[beg] make yes-test-basic TESTS='-j4'
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = 
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Checking leaked global symbols...none
/tmp/ruby/src/trunk-yjit/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372
/tmp/ruby/src/trunk-yjit/basictest/test.rb:condition ..OK 2
/tmp/ruby/src/trunk-yjit/basictest/test.rb:if/unless ...OK 3
/tmp/ruby/src/trunk-yjit/basictest/test.rb:case .....OK 5
/tmp/ruby/src/trunk-yjit/basictest/test.rb:while/until ........OK 8
/tmp/ruby/src/trunk-yjit/basictest/test.rb:exception ..........OK 10
/tmp/ruby/src/trunk-yjit/basictest/test.rb:array .......................................OK 39
/tmp/ruby/src/trunk-yjit/basictest/test.rb:hash ...........................OK 27
/tmp/ruby/src/trunk-yjit/basictest/test.rb:iterator ...........................................................................................................OK 107
/tmp/ruby/src/trunk-yjit/basictest/test.rb:float ................................................................................OK 80
/tmp/ruby/src/trunk-yjit/basictest/test.rb:bignum ...............................OK 31
/tmp/ruby/src/trunk-yjit/basictest/test.rb:string & char ..............................................................OK 62
/tmp/ruby/src/trunk-yjit/basictest/test.rb:assignment ..........OK 10
/tmp/ruby/src/trunk-yjit/basictest/test.rb:call ......OK 6
/tmp/ruby/src/trunk-yjit/basictest/test.rb:proc .........OK 9
/tmp/ruby/src/trunk-yjit/basictest/test.rb:signal ..OK 2
/tmp/ruby/src/trunk-yjit/basictest/test.rb:eval ...........................OK 27
/tmp/ruby/src/trunk-yjit/basictest/test.rb:system ........OK 8
/tmp/ruby/src/trunk-yjit/basictest/test.rb:const .....OK 5
/tmp/ruby/src/trunk-yjit/basictest/test.rb:clone .....OK 5
/tmp/ruby/src/trunk-yjit/basictest/test.rb:marshal ....OK 4
/tmp/ruby/src/trunk-yjit/basictest/test.rb:pack ....OK 4
/tmp/ruby/src/trunk-yjit/basictest/test.rb:math ..OK 2
/tmp/ruby/src/trunk-yjit/basictest/test.rb:struct ......OK 6
/tmp/ruby/src/trunk-yjit/basictest/test.rb:variable ............OK 12
/tmp/ruby/src/trunk-yjit/basictest/test.rb:trace ...OK 3
/tmp/ruby/src/trunk-yjit/basictest/test.rb:defined? ............OK 12
/tmp/ruby/src/trunk-yjit/basictest/test.rb:alias ......OK 6
/tmp/ruby/src/trunk-yjit/basictest/test.rb:path .......................OK 23
/tmp/ruby/src/trunk-yjit/basictest/test.rb:gc ....OK 4

test succeeded
$$$[end] "make yes-test-basic TESTS='-j4'" exit with 0.
$$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j4'
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = 
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

generating enc.mk
generating encdb.h
encdb.h unchanged
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-yjit/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
Run options: 
  --seed=26579
  "--ruby=./miniruby -I/tmp/ruby/src/trunk-yjit/lib -I. -I.ext/common  /tmp/ruby/src/trunk-yjit/tool/runruby.rb --extout=.ext  -- --disable-gems"
  --excludes-dir=/tmp/ruby/src/trunk-yjit/test/.excludes
  --name=!/memory_leak/
  --stderr-on-failure
  -j4

# Running tests:

[  1/870] 3828827=test_gem_source_fetch_problem
[  2/870] 3828826=test_x509store
[  3/870] 3828830=test_gem_commands_search_command
[  4/870] 3828829=test_numeric
[  5/870] 3828829=test_erb_command
[  6/870] 3828830=test_method
[  7/870] 3828827=test_gem_safe_yaml
[  8/870] 3828829=test_gem_commands_install_command
[  9/870] 3828827=test_rdoc_markup_to_ansi
[ 10/870] 3828826=test_shift_jis
[ 11/870] 3828826=test_hmac
[ 12/870] 3828826=test_super
[ 13/870] 3828827=test_ractor_compatibility
[ 14/870] 3828826=test_gem_commands_check_command
[ 15/870] 3828827=test_macro
[ 16/870] 3828826=test_inlinecache
[ 17/870] 3828826=test_ostruct
[ 18/870] 3828827=test_gem_ci_detector
[ 19/870] 3828827=test_complex2
[ 20/870] 3828827=test_io_wait_uncommon
[ 21/870] 3828827=test_gem_commands_signin_command
[ 22/870] 3828826=test_tsort
[ 23/870] 3828826=test_delegate
[ 24/870] 3828826=test_gem_command_manager
[ 25/870] 3828827=test_cgi_header
[ 26/870] 3828827=test_pkcs7
[ 27/870] 3828826=test_hash_create
[ 28/870] 3828826=test_update
[ 29/870] 3828826=test_dns
[ 30/870] 3828827=test_rand
[ 31/870] 3828827=test_windows_1252
[ 32/870] 3828827=test_switch_hitter
[ 33/870] 3828827=test_arity
[ 34/870] 3828826=test_alias
[ 35/870] 3828827=compiler_test
[ 36/870] 3828827=json_generic_object_test
[ 37/870] 3828827=test_rdoc_markdown_test
[ 38/870] 3828826=test_rdoc_normal_module
[ 39/870] 3828826=test_integer_comb
[ 40/870] 3828829=test_numeric
[ 41/870] 3828829=test_word
[ 42/870] 3828829=test_rdoc_generator_json_index
[ 43/870] 3828830=test_gem_request_set_lockfile_tokenizer
[ 44/870] 3828829=test_pointer
[ 45/870] 3828830=test_rdoc_markup
[ 46/870] 3828827=test_gem_commands_dependency_command
[ 47/870] 3828827=test_require
[ 48/870] 3828830=test_memory_view
[ 49/870] 3828830=test_array
[ 50/870] 3828830=unescape_test
[ 51/870] 3828829=test_type
[ 52/870] 3828829=test_c_struct_builder
[ 53/870] 3828829=test_rendering
[ 54/870] 3828829=test_arity
[ 55/870] 3828829=test_gem_stream_ui
[ 56/870] 3828829=test_trace
[ 57/870] 3828829=test_rdoc_generator_ri
[ 58/870] 3828829=test_pack
[ 59/870] 3828829=test_weakkeymap
[ 60/870] 3828829=test_dot_dot
[ 61/870] 3828829=test_usrmarshal
[ 62/870] 3828830=test_gem_commands_exec_command
[ 63/870] 3828829=heredoc_dedent_test
[ 64/870] 3828829=attribute_write_test
[ 65/870] 3828829=test_data
[ 66/870] 3828826=test_formatter
[ 67/870] 3828829=test_defined
[ 68/870] 3828826=test_enc_raise
[ 69/870] 3828826=test_files_test
[ 70/870] 3828826=test_gem_spec_fetcher
[ 71/870] 3828829=test_singleton
[ 72/870] 3828829=test_member
[ 73/870] 3828829=test_date_arith
[ 74/870] 3828827=test_rdoc_markup_hard_break
[ 75/870] 3828829=format_errors_test
[ 76/870] 3828827=test_fnmatch
[ 77/870] 3828829=test_mailto
[ 78/870] 3828829=test_sleep
[ 79/870] 3828827=test_ractor
[ 80/870] 3828827=test_rbconfig
[ 81/870] 3828827=test_transcode
[ 82/870] 3828826=test_erb_m17n
[ 83/870] 3828826=test_file_exhaustive
[ 84/870] 3828827=test_my_integer
[ 85/870] 3828827=test_face
[ 86/870] 3828827=test_debugger_integration
[ 87/870] 3828827=test_sizeof
[ 88/870] 3828830=test_signedness
[ 89/870] 3828829=test_system
[ 90/870] 3828829=test_gem_source_lock
[ 91/870] 3828829=test_gem_resolver_lock_specification
[ 92/870] 3828829=test_pack
[ 93/870] 3828829=test_placearg
[ 94/870] 3828829=test_string
[ 95/870] 3828829=test_delete
[ 96/870] 3828829=test_nofree
[ 97/870] 3828829=test_gem_name_tuple
[ 98/870] 3828829=test_continuation
[ 99/870] 3828829=test_change_word
[100/870] 3828829=test_raise
[101/870] 3828829=test_gc
[102/870] 3828827=test_constant
[103/870] 3828826=test_lazy_enumerator
[104/870] 3828826=test_ractor
[105/870] 3828826=test_find_executable
[106/870] 3828826=test_encoding
[107/870] 3828826=test_gem_source_vendor
[108/870] 3828826=test_too_many_dummy_encodings
[109/870] 3828830=test_pkey
[110/870] 3828826=test_case_mapping
[111/870] 3828826=test_have_func
[112/870] 3828830=test_modify_expand
[113/870] 3828830=test_readpartial
[114/870] 3828830=test_gem_available_set
[115/870] 3828830=test_literal
[116/870] 3828830=test_cgi_multipart
[117/870] 3828830=test_error_highlight
[118/870] 3828826=test_autoconf
[119/870] 3828826=test_thread
[120/870] 3828830=test_rdoc_attr
[121/870] 3828830=test_gem_commands_list_command
[122/870] 3828830=test_rdoc_method_attr
[123/870] 3828826=test_gem_source_local
[124/870] 3828830=test_win32ole_type
[125/870] 3828830=test_convertible
[126/870] 3828826=test_nil
[127/870] 3828826=test_rdoc_comment
[128/870] 3828826=test_have_macro
[129/870] 3828827=test_profile_frames
[130/870] 3828827=test_shapes
[131/870] 3828827=test_cgi_tag_helper
[132/870] 3828827=test_scalar
[133/870] 3828827=test_getopts
[134/870] 3828827=test_rdoc_i18n_locale
[135/870] 3828827=test_ractor
[136/870] 3828827=test_gem_commands_help_command
[137/870] 3828827=test_rdoc_markup_formatter
[138/870] 3828827=test_gem_validator
[139/870] 3828827=test_forwardable
[140/870] 3828827=json_addition_test
[141/870] 3828827=test_stringio
[142/870] 3828826=test_qsort
[143/870] 3828826=test_gem_package
[144/870] 3828827=test_eval
[145/870] 3828827=test_ancdata
[146/870] 3828827=test_sleep
[147/870] 3828826=test_date
[148/870] 3828826=test_rdoc_markup_parser
[149/870] 3828826=test_summary
[150/870] 3828826=test_rdoc_single_class
[151/870] 3828826=test_logger
[152/870] 3828826=test_emoji_breaks
[153/870] 3828829=test_udp
[154/870] 3828829=json_ext_parser_test
[155/870] 3828829=test_pipe
[156/870] 3828829=test_reline_key
[157/870] 3828829=test_rdoc_token_stream
[158/870] 3828829=test_import
[159/870] 3828826=test_unicode_normalize
[160/870] 3828827=test_gem_request_set_gem_dependency_api
[161/870] 3828827=test_mdns
[162/870] 3828827=test_rdoc_cross_reference
[163/870] 3828829=test_zsh_completion
[164/870] 3828829=test_foreach
[165/870] 3828829=test_uncorrectable_name_check
[166/870] 3828829=test_ts
[167/870] 3828827=test_locale
[168/870] 3828827=test_gem_commands_setup_command
[169/870] 3828829=test_win32ole_method
[170/870] 3828829=test_cgi_modruby
[171/870] 3828829=test_gem_impossible_dependencies_error
[172/870] 3828829=test_rdoc_generator_darkfish
[173/870] 3828827=test_range
[174/870] 3828829=test_gem_local_remote_options
[175/870] 3828829=test_history
[176/870] 3828829=test_stat
[177/870] 3828829=test_gem_security
[178/870] 3828827=test_time
[179/870] 3828827=test_stream
[180/870] 3828827=test_gem_resolver_lock_set
[181/870] 3828827=test_proc
[182/870] 3828826=test_gem_commands_sources_command
[183/870] 3828826=test_ansi_with_terminfo
[184/870] 3828826=test_queue
[185/870] 3828826=test_zlib
[186/870] 3828827=test_timeout
[187/870] 3828827=test_extlibs
[188/870] 3828827=test_securerandom
[189/870] 3828827=test_gem_update_suggestion
[190/870] 3828827=location_test
[191/870] 3828827=json_generator_test
[192/870] 3828827=test_prettyprint
[193/870] 3828827=test_big5
[194/870] 3828827=test_nonblock
[195/870] 3828827=test_did_you_mean
[196/870] 3828827=test_rubygems
[197/870] 3828830=version_test
[198/870] 3828830=test_arithmetic_sequence
[199/870] 3828830=test_gem_commands_outdated_command
[200/870] 3828829=test_gem_dependency_resolution_error
[201/870] 3828829=test_https_proxy
[202/870] 3828829=test_process
[203/870] 3828827=ruby_api_test
[204/870] 3828830=test_gem_silent_ui
[205/870] 3828830=test_gem_request_set_lockfile_parser
[206/870] 3828827=test_kill_ring
[207/870] 3828827=test_rdoc_rubygems_hook
[208/870] 3828830=test_option
[209/870] 3828827=test_gem_commands_uninstall_command
[210/870] 3828830=test_tracer
[211/870] 3828830=test_color_printer
[212/870] 3828830=test_gem_resolver_installer_set
[213/870] 3828830=test_type_completor
[214/870] 3828830=test_to_ruby
[215/870] 3828830=test_syntax
[216/870] 3828827=test_gem_request_connection_pools
[217/870] 3828827=test_win32ole_variant_m
[218/870] 3828827=test_rdoc_code_object
[219/870] 3828827=test_refinement
[220/870] 3828827=test_gem_dependency_list
[221/870] 3828827=test_rdoc_markup_to_table_of_contents
[222/870] 3828827=test_gem_commands_environment_command
[223/870] 3828827=test_x509crl
[224/870] 3828827=test_cgi_session
[225/870] 3828827=test_ellipsize
[226/870] 3828827=test_complex
[227/870] 3828826=test_random_formatter
[228/870] 3828827=test_files_ext
[229/870] 3828826=test_gem_resolver_activation_request
[230/870] 3828826=test_koi8
[231/870] 3828826=test_asn1
[232/870] 3828826=test_gem_package_tar_reader_entry
[233/870] 3828827=test_debug
[234/870] 3828827=test_insns_leaf
[235/870] 3828827=test_gem_resolver_requirement_list
[236/870] 3828827=test_filter
[237/870] 3828827=test_arith_seq_beg_len_step
[238/870] 3828827=test_pty
[239/870] 3828826=test_line_editor
[240/870] 3828826=test_digest_extend
[241/870] 3828826=test_stringify_symbols
[242/870] 3828826=test_evaluation
[243/870] 3828826=test_https
[244/870] 3828827=test_string_memory
[245/870] 3828827=dispatcher_test
[246/870] 3828827=test_x509req
[247/870] 3828826=test_eval_history
[248/870] 3828827=test_alias_and_anchor
[249/870] 3828826=test_gem_commands_pristine_command
[250/870] 3828827=test_gem_source_subpath_problem
[251/870] 3828827=test_dln
[252/870] 3828827=test_libs
[253/870] 3828827=test_fiber
[254/870] 3828826=test_gc
[255/870] 3828826=test_gem_commands_info_command
[256/870] 3828826=test_math
[257/870] 3828826=test_wss
[258/870] 3828826=test_completion
[259/870] 3828830=test_method_name_check
[260/870] 3828830=test_case
[261/870] 3828830=test_rational2
[262/870] 3828830=library_symbols_test
[263/870] 3828830=test_pkg_config
[264/870] 3828830=test_http
[265/870] 3828826=test_env
[266/870] 3828827=test_show_source
[267/870] 3828827=test_bundled_ca
[268/870] 3828826=test_tree_builder
[269/870] 3828826=test_at_exit
[270/870] 3828826=test_rdoc_markup_to_html
[271/870] 3828826=test_protect
[272/870] 3828826=test_monitor
[273/870] 3828826=test_cgi_cookie
[274/870] 3828826=json_string_matching_test
[275/870] 3828826=test_mul
[276/870] 3828826=parse_test
[277/870] 3828827=test_whileuntil
[278/870] 3828827=test_dir
[279/870] 3828827=test_cgi_util
[280/870] 3828827=test_metaclass
[281/870] 3828827=test_rdoc_markup_heading
[282/870] 3828827=test_acceptable
[283/870] 3828827=test_pstore
[284/870] 3828827=test_gem_ext_rake_builder
[285/870] 3828827=test_hash
[286/870] 3828826=test_rdoc_generator_pot_po
[287/870] 3828826=test_httpheader
[288/870] 3828826=test_rdoc_ri_driver
[289/870] 3828826=test_irb
[290/870] 3828826=test_key_name_check
[291/870] 3828829=test_gem_resolver_composed_set
[292/870] 3828826=test_cipher
[293/870] 3828829=test_gem_package_tar_writer
[294/870] 3828826=test_new
[295/870] 3828826=test_rat
[296/870] 3828826=test_rdoc_markup_attribute_manager
[297/870] 3828826=regexp_test
[298/870] 3828829=test_gb18030
[299/870] 3828829=test_scalar_scanner
[300/870] 3828829=test_gem_platform
[301/870] 3828826=test_x509ext
[302/870] 3828826=test_exit
[303/870] 3828829=test_config
[304/870] 3828826=test_bn
[305/870] 3828829=test_buffered_io
[306/870] 3828826=test_generic
[307/870] 3828829=test_cparser
[308/870] 3828826=test_gem_security_signer
[309/870] 3828826=test_set
[310/870] 3828826=test_key_error
[311/870] 3828826=test_engine
[312/870] 3828826=test_x509attr
[313/870] 3828826=test_gbk
[314/870] 3828826=test_argf
[315/870] 3828830=test_pinned
[316/870] 3828830=test_ssl_session
[317/870] 3828829=test_gem_resolver_dependency_request
[318/870] 3828829=test_rdoc_parser
[319/870] 3828829=test_rdoc_markup_verbatim
[320/870] 3828829=test_yjit
[321/870] 3828830=test_m17n
[322/870] 3828830=test_data
[323/870] 3828830=locals_test
[324/870] 3828830=test_key_event_record
[325/870] 3828830=test_parser
[326/870] 3828830=pattern_test
[327/870] 3828830=test_string
[328/870] 3828830=test_iterator
[329/870] 3828830=test_http_request
[330/870] 3828830=test_storage
[331/870] 3828830=test_gem_ext_configure_builder
[332/870] 3828830=test_recorder
[333/870] 3828830=test_find
[334/870] 3828830=test_cmethod
[335/870] 3828830=test_dir_m17n
[336/870] 3828827=test_require_lib
[337/870] 3828830=test_tree_spell_checker
[338/870] 3828830=parser_test
[339/870] 3828830=test_function_entry
[340/870] 3828830=test_rdoc_constant
[341/870] 3828830=test_deprecate
[342/870] 3828830=test_win32ole_typelib
[343/870] 3828830=test_euc_jp
[344/870] 3828830=test_gem_commands_lock_command
[345/870] 3828830=test_external_new
[346/870] 3828830=test_process
[347/870] 3828830=test_rdoc_markdown
[348/870] 3828830=integer_parse_test
[349/870] 3828830=test_rdoc_markup_pre_process
[350/870] 3828826=test_rdoc_rd_inline_parser
[351/870] 3828826=test_open3
[352/870] 3828830=test_rdoc_encoding
[353/870] 3828830=test_objectspace
[354/870] 3828830=test_benchmark
[355/870] 3828830=test_bmethod
[356/870] 3828830=test_class2name
[357/870] 3828830=test_gem_source
[358/870] 3828827=test_ftp
[359/870] 3828827=test_array
[360/870] 3828830=test_depth_first
[361/870] 3828830=test_set_len
[362/870] 3828830=test_key_stroke
[363/870] 3828830=test_rdoc_markup_include
[364/870] 3828830=test_rdoc_context_section
[365/870] 3828830=test_bug-14834
[366/870] 3828830=memsize_test
[367/870] 3828830=test_string
[368/870] 3828826=test_not
[369/870] 3828826=test_terminfo
[370/870] 3828826=test_rdoc_parser_c
[371/870] 3828826=test_variable
[372/870] 3828826=test_digest
[373/870] 3828826=test_assembler
[374/870] 3828826=json_fixtures_test
[375/870] 3828826=test_closure
[376/870] 3828826=test_addrinfo
[377/870] 3828829=test_primitive
[378/870] 3828829=test_gem_dependency
[379/870] 3828826=test_date_marshal
[380/870] 3828826=test_io
[381/870] 3828829=test_document
[382/870] 3828829=test_rdoc_servlet
[383/870] 3828829=test_iseq_load
[384/870] 3828829=test_rdoc_top_level
[385/870] 3828829=test_frozen
[386/870] 3828829=test_rdoc_markup_to_joined_paragraph
[387/870] 3828829=test_ws
[388/870] 3828829=test_float
[389/870] 3828829=test_gem_commands_build_command
[390/870] 3828829=test_boolean
[391/870] 3828829=test_scheduler
[392/870] 3828829=test_etc
[393/870] 3828829=test_encoding
[394/870] 3828829=test_emitter
[395/870] 3828829=test_sockopt
[396/870] 3828829=test_ast
[397/870] 3828827=test_gem_request_set
[398/870] 3828827=test_stream
[399/870] 3828827=test_shellwords
[400/870] 3828827=test_win32ole_method_event
[401/870] 3828827=test_gem_resolver_index_specification
[402/870] 3828827=test_omap
[403/870] 3828827=constant_path_node_test
[404/870] 3828827=test_psych
[405/870] 3828827=test_arith_seq_extract
[406/870] 3828827=test_logperiod
[407/870] 3828827=test_duplicate
[408/870] 3828827=test_case_comprehensive
[409/870] 3828830=test_object_create_start
[410/870] 3828830=test_webauthn_listener_response
[411/870] 3828830=test_recursion
[412/870] 3828830=test_nomethod_error
[413/870] 3828830=test_nextafter
[414/870] 3828830=test_capacity
[415/870] 3828830=ripper_test
[416/870] 3828830=test_ractor
[417/870] 3828830=magic_comment_test
[418/870] 3828830=test_rational
[419/870] 3828830=test_date_strftime
[420/870] 3828830=test_rdoc_markup_paragraph
[421/870] 3828830=test_gem_bundler_version_finder
[422/870] 3828830=test_command
[423/870] 3828830=test_sprintf
[424/870] 3828830=test_weakmap
[425/870] 3828826=test_gem_ext_builder
[426/870] 3828826=test_integer
[427/870] 3828826=test_rdoc_normal_class
[428/870] 3828826=test_basicsocket
[429/870] 3828826=test_unicode
[430/870] 3828826=test_files_test_1
[431/870] 3828826=test_kdf
[432/870] 3828826=test_typeddata
[433/870] 3828826=test_dup
[434/870] 3828826=test_thread_cv
[435/870] 3828826=test_logdevice
[436/870] 3828826=test_gem_installer
[437/870] 3828827=test_gem_ext_cargo_builder
[438/870] 3828827=test_yamldbm
[439/870] 3828827=test_popen_deadlock
[440/870] 3828830=test_rdoc_rd_inline
[441/870] 3828830=test_x509cert
[442/870] 3828827=test_optparse
[443/870] 3828827=test_date_ractor
[444/870] 3828830=test_config
[445/870] 3828830=comments_test
[446/870] 3828830=test_object
[447/870] 3828827=test_interned_str
[448/870] 3828827=test_func
[449/870] 3828830=test_nesting_parser
[450/870] 3828830=test_fstring
[451/870] 3828830=test_propertyputref
[452/870] 3828830=test_yaml
[453/870] 3828830=test_rdoc_markup_raw
[454/870] 3828830=test_yield_block
[455/870] 3828830=ruby_parser_test
[456/870] 3828830=test_lexer
[457/870] 3828830=test_random
[458/870] 3828830=test_pkey_dh
[459/870] 3828830=test_gem_commands_fetch_command
[460/870] 3828830=test_load
[461/870] 3828830=test_gem_ext_ext_conf_builder
[462/870] 3828830=test_rdoc_parser_simple
[463/870] 3828830=test_rdoc_require
[464/870] 3828830=test_path_to_class
[465/870] 3828830=test_win32ole_type_event
[466/870] 3828830=test_framework
[467/870] 3828830=test_case_options
[468/870] 3828830=test_pair
[469/870] 3828827=test_date_attr
[470/870] 3828827=test_to_ary_concat
[471/870] 3828826=test_threadgroup
[472/870] 3828826=test_emoji
[473/870] 3828826=test_sorted_set
[474/870] 3828826=test_rdoc_markup_indented_paragraph
[475/870] 3828826=test_rdoc_alias
[476/870] 3828826=test_cp949
[477/870] 3828826=test_condition
[478/870] 3828826=test_rdoc_generator_pot_po_entry
[479/870] 3828826=test_gem_resolver_api_set
[480/870] 3828826=test_merge_keys
[481/870] 3828826=test_io_buffer
[482/870] 3828826=test_string_processing
[483/870] 3828826=test_rdoc_extend
[484/870] 3828826=test_gem_util
[485/870] 3828826=test_configuration
[486/870] 3828827=test_gem_package_tar_header
[487/870] 3828826=test_install
[488/870] 3828827=test_rendering
[489/870] 3828827=test_bigzero
[490/870] 3828827=test_webauthn_listener
[491/870] 3828826=test_class
Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 11 : #<TCPSocket:fd 11, AF_INET, 127.0.0.1, 36225>
[492/870] 3828830=test_gem_commands_stale_command
[493/870] 3828830=test_const
[494/870] 3828830=test_pkcs12
[495/870] 3828827=test_printf
[496/870] 3828827=test_pack
[497/870] 3828830=test_rdoc_parser_rd
[498/870] 3828830=test_lambda
[499/870] 3828827=test_abi
[500/870] 3828830=test_ns_spki
[501/870] 3828830=test_gem_resolver
[502/870] 3828827=test_config
[503/870] 3828830=test_httpresponse
[504/870] 3828830=test_rdoc_parser_ruby
[505/870] 3828827=test_handle
[506/870] 3828830=test_pp
[507/870] 3828830=test_rdoc_markup_to_label
[508/870] 3828830=test_utf16
[509/870] 3828830=test_gem_ext_cmake_builder
[510/870] 3828830=test_io_console
[511/870] 3828827=test_rdoc_task
[512/870] 3828827=test_helper
[513/870] 3828827=test_io_m17n
[514/870] 3828826=test_bash_completion
[515/870] 3828826=test_econv
[516/870] 3828827=test_backtrace
[517/870] 3828830=test_c_union_entity
[518/870] 3828830=test_rubyoptions
[519/870] 3828826=test_stack
[520/870] 3828827=test_fileutils
[521/870] 3828826=test_addr
[522/870] 3828826=test_euc_kr
[523/870] 3828826=test_gem_uri_formatter
[524/870] 3828826=test_remote_fetch_error
[525/870] 3828826=test_parse
[526/870] 3828826=test_regexp
[527/870] 3828827=test_lock_native_thread
[528/870] 3828827=test_ocsp
[529/870] 3828827=test_gem_commands_push_command
[530/870] 3828827=test_digest
[531/870] 3828827=test_objspace
[532/870] 3828829=test_dryrun
[533/870] 3828829=test_gem_source_git
[534/870] 3828829=test_last_thread
[535/870] 3828829=test_regex_casefold
[536/870] 3828829=encoding_test
[537/870] 3828829=test_io_wait
[538/870] 3828829=test_data_error
[539/870] 3828829=test_method_cache
[540/870] 3828829=test_kwargs
[541/870] 3828829=test_fiddle
[542/870] 3828829=test_gem_security_trust_dir
[543/870] 3828829=test_ractor
[544/870] 3828829=test_have_library
[545/870] 3828829=test_gem_commands_query_command
[546/870] 3828829=test_thread
[547/870] 3828830=test_struct
[548/870] 3828830=test_win32ole_variant_outarg
[549/870] 3828830=fuzzer_test
[550/870] 3828830=test_pattern_key_name_check
[551/870] 3828830=test_function
[552/870] 3828830=test_frozen_error
[553/870] 3828830=test_ractor
[554/870] 3828830=test_rdoc_markup_to_html_snippet
[555/870] 3828830=test_gem_commands_cleanup_command
[556/870] 3828830=test_within_pipe
[557/870] 3828830=test_gem_stub_specification
[558/870] 3828830=test_path
[559/870] 3828830=test_http
[560/870] 3828830=test_undef
[561/870] 3828830=test_yaml_tree
[562/870] 3828830=test_gem_resolver_best_set
[563/870] 3828830=test_beginendblock
[564/870] 3828830=test_time
[565/870] 3828830=test_autoload
[566/870] 3828829=test_yamlstore
[567/870] 3828829=test_yjit_exit_locations
[568/870] 3828829=test_rdoc_include
[569/870] 3828829=test_gem_version
[570/870] 3828829=test_x509name
[571/870] 3828829=test_raise_exception
[572/870] 3828829=test_gem_config_file
[573/870] 3828829=test_address_resolve
[574/870] 3828829=test_gem_unsatisfiable_dependency_error
[575/870] 3828829=test_rdoc_markup_to_html_crossref
[576/870] 3828829=test_hash
[577/870] 3828829=test_iter_break
[578/870] 3828829=test_gem_resolver_conflict
[579/870] 3828829=test_rdoc_options
[580/870] 3828829=test_num2int
[581/870] 3828829=test_ripper
[582/870] 3828830=test_gem_remote_fetcher
[583/870] 3828829=test_rdoc_markup_to_bs
[584/870] 3828829=test_rdoc_rd
[585/870] 3828829=test_append
[586/870] 3828829=parse_comments_test
[587/870] 3828829=test_enc_str_buf_cat
[588/870] 3828829=test_require
[589/870] 3828830=test_webauthn_poller
[590/870] 3828830=test_erb
[591/870] 3828830=test_array_create
[592/870] 3828830=test_reqarg
[593/870] 3828829=test_internal_ivar
[594/870] 3828829=test_resource
[595/870] 3828829=test_color
[596/870] 3828830=test_gem_resolver_specification
[597/870] 3828830=test_tracepoint
[598/870] 3828829=test_ansi_without_terminfo
[599/870] 3828829=test_comparable
[600/870] 3828829=test_gem_gem_runner
[601/870] 3828829=test_gem_resolver_installed_specification
[602/870] 3828829=test_gem_source_specific_file
[603/870] 3828829=test_enc_associate
[604/870] 3828830=test_io_timeout
[605/870] 3828830=test_pathname
[606/870] 3828830=test_coverage
[607/870] 3828829=test_rdoc_generator_pot
[608/870] 3828829=test_rdoc_any_method
[609/870] 3828829=test_gem_package_tar_reader
[610/870] 3828829=test_unix
[611/870] 3828829=test_compile_prism
[612/870] 3828830=test_context
[613/870] 3828829=test_symbol
[614/870] 3828830=test_coder
[615/870] 3828830=test_random
[616/870] 3828830=test_workspace
[617/870] 3828830=test_complexrational
[618/870] 3828830=test_gem_resolver_local_specification
[619/870] 3828830=test_wait
[620/870] 3828830=test_noarg
[621/870] 3828830=test_notimplement
[622/870] 3828830=test_mkmf
[623/870] 3828830=test_marshalable
[624/870] 3828830=test_euc_tw
[625/870] 3828830=test_gem_requirement
[626/870] 3828830=test_gem_commands_open_command
[627/870] 3828830=test_unicode_escape
[628/870] 3828830=test_windows_1251
[629/870] 3828830=test_utf32
[630/870] 3828830=test_numhash
[631/870] 3828830=test_clone
[632/870] 3828830=test_pkey_rsa
[633/870] 3828830=test_mixed_unicode_escapes
[634/870] 3828830=test_set
[635/870] 3828830=test_httpresponses
[636/870] 3828830=test_cstr
[637/870] 3828830=test_cesu8
[638/870] 3828830=json_encoding_test
[639/870] 3828830=test_yield
[640/870] 3828830=ractor_test
[641/870] 3828830=test_iseq
[642/870] 3828830=test_win32ole_record
[643/870] 3828830=test_gem_path_support
[644/870] 3828830=test_ubf_async_safe
[645/870] 3828830=test_pattern_matching
[646/870] 3828830=test_gem_commands_owner_command
[647/870] 3828829=test_bignum
[648/870] 3828829=test_gem_specification
[649/870] 3828830=test_instrumentation_api
[650/870] 3828830=test_win32ole_variable
[651/870] 3828830=test_postponed_job
[652/870] 3828829=test_files_sample
[653/870] 3828829=test_win32ole_param
[654/870] 3828829=test_gem_request_set_lockfile
[655/870] 3828830=test_console_attr
[656/870] 3828830=test_nowrite
[657/870] 3828830=test_big2str
[658/870] 3828830=test_thread_queue
[659/870] 3828829=test_str2big
[660/870] 3828829=test_date_compat
[661/870] 3828829=test_spell_checker
[662/870] 3828829=test_symbol
[663/870] 3828829=test_gem_version_option
[664/870] 3828829=test_scan_args
[665/870] 3828829=test_eval
[666/870] 3828829=test_gem_resolver_git_set
[667/870] 3828829=test_gem_commands_update_command
[668/870] 3828827=test_normalize
[669/870] 3828827=test_class_name_check
[670/870] 3828827=test_ipaddr
[671/870] 3828827=test_files_test_2
[672/870] 3828827=test_key_actor_emacs
[673/870] 3828827=test_case
[674/870] 3828827=test_basicinstructions
[675/870] 3828827=test_emitter
[676/870] 3828827=test_enumerator
[677/870] 3828827=test_init
[678/870] 3828827=test_parser_events
[679/870] 3828827=test_load
[680/870] 3828827=test_stringscanner
[681/870] 3828827=test_gem_resolver_vendor_specification
[682/870] 3828827=test_gem_uri
[683/870] 3828827=test_file
[684/870] 3828827=test_rubyvm
[685/870] 3828827=test_timeout
[686/870] 3828829=test_config
[687/870] 3828829=test_gem_security_policy
[688/870] 3828829=test_weakref
[689/870] 3828827=test_ractor
[690/870] 3828827=test_severity
[691/870] 3828827=test_method_cache
[692/870] 3828827=test_sprintf_comb
[693/870] 3828829=test_yaml_special_cases
[694/870] 3828829=test_gem_source_list
[695/870] 3828827=test_win32ole
[696/870] 3828827=test_time_tz
[697/870] 3828829=test_rdoc_generator_markup
[698/870] 3828827=test_name_error_extension
[699/870] 3828829=bom_test
[700/870] 3828827=test_protocol
[701/870] 3828829=test_gem_commands_signout_command
[702/870] 3828829=test_date_strptime
[703/870] 3828829=test_null
[704/870] 3828829=test_gem_text
[705/870] 3828829=test_gem_request
[706/870] 3828827=test_settracefunc
[707/870] 3828829=test_file
[708/870] 3828830=test_bug_reporter
[709/870] 3828827=test_ssl
[710/870] 3828830=test_fd_setsize
[711/870] 3828830=test_module
[712/870] 3828829=test_cclass
[713/870] 3828829=test_rdoc_i18n_text
[714/870] 3828829=test_singleton_function
[715/870] 3828829=test_rdoc_text
[716/870] 3828829=test_json_tree
[717/870] 3828829=test_ifunless
[718/870] 3828829=test_require
[719/870] 3828829=test_gem_install_update_options
[720/870] 3828829=test_open-uri
[721/870] 3828830=test_resolve_symbol
[722/870] 3828830=test_gem
[723/870] 3828829=test_ldap
[724/870] 3828829=test_rdoc_context
[725/870] 3828829=test_gem_commands_cert_command
[726/870] 3828830=test_help
[727/870] 3828830=test_files_lib
[728/870] 3828829=test_serialize_subclasses
[729/870] 3828829=test_iso_8859
[730/870] 3828829=test_exception
[731/870] 3828826=test_gem_doctor
[732/870] 3828826=test_parser
[733/870] 3828826=test_struct
[734/870] 3828826=test_cgi_core
[735/870] 3828826=test_nil2vtempty
[736/870] 3828827=test_mutex
[737/870] 3828826=test_gem_commands_unpack_command
[738/870] 3828826=test_marshal
[739/870] 3828827=test_win32ole_variant
[740/870] 3828827=test_flip
[741/870] 3828827=test_jaro_winkler
[742/870] 3828827=test_ractor
[743/870] 3828827=test_stringchar
[744/870] 3828827=test_rdoc_markup_to_markdown
[745/870] 3828827=test_gem_package_old
[746/870] 3828827=test_enumerable
[747/870] 3828827=test_sexp
[748/870] 3828827=test_ssl
[749/870] 3828827=json_common_interface_test
[750/870] 3828827=test_common
[751/870] 3828830=test_gem_uninstaller
[752/870] 3828826=test_project_sanity
[753/870] 3828826=test_gem_commands_mirror
[754/870] 3828827=test_gem_source_installed
[755/870] 3828826=test_c_struct_entry
[756/870] 3828827=test_m17n_comb
[757/870] 3828826=test_integer
[758/870] 3828830=test_ensured
[759/870] 3828830=test_key_actor_vi
[760/870] 3828830=test_date_time
[761/870] 3828830=test_gem_commands_which_command
[762/870] 3828830=test_passing_block
[763/870] 3828830=test_gem_commands_contents_command
[764/870] 3828829=test_enumerator
[765/870] 3828830=test_force_exit
[766/870] 3828830=test_thread_fd_close
[767/870] 3828830=test_rdoc_ri_paths
[768/870] 3828830=test_flush
[769/870] 3828830=test_safe_load
[770/870] 3828830=test_pkey_dsa
[771/870] 3828830=test_fixnum
[772/870] 3828827=test_signal
[773/870] 3828830=test_name_error
[774/870] 3828830=test_rdoc_markup_to_rdoc
[775/870] 3828830=test_gem_commands_server_command
[776/870] 3828830=test_tempfile
[777/870] 3828830=test_history
[778/870] 3828826=test_date_conv
[779/870] 3828826=test_rdoc_markup_to_tt_only
[780/870] 3828830=test_egrep_cpp
[781/870] 3828826=!Nothing_to_test
[782/870] 3828826=json_parser_test
[783/870] 3828826=test_io
[784/870] 3828830=test_gem_resolver_vendor_set
[785/870] 3828830=test_gem_package_task
[786/870] 3828830=test_verbose
[787/870] 3828830=test_rb_str_dup
[788/870] 3828830=test_trick
[789/870] 3828826=test_div
[790/870] 3828826=test_helper
[791/870] 3828826=test_gem_commands_specification_command
[792/870] 3828826=test_rdoc_parser_markdown
[793/870] 3828826=test_gem_ext_cargo_builder_unit
[794/870] 3828826=test_tmpdir
[795/870] 3828826=test_gem_command
[796/870] 3828827=test_deprecated
[797/870] 3828827=test_rdoc_tom_doc
[798/870] 3828827=test_fips
[799/870] 3828826=test_kernel
[800/870] 3828827=test_scanner_events
[801/870] 3828827=test_optarg
[802/870] 3828827=test_gem_resolver_git_specification
[803/870] 3828826=errors_test
[804/870] 3828826=test_socket
[805/870] 3828827=desugar_compiler_test
[806/870] 3828827=test_class
[807/870] 3828830=test_exception
[808/870] 3828827=test_flags
[809/870] 3828830=test_gem_rdoc
[810/870] 3828830=test_gem_dependency_installer
[811/870] 3828827=test_input_method
[812/870] 3828827=test_vm_dump
[813/870] 3828827=test_enum
[814/870] 3828827=test_rdoc_rd_block_parser
[815/870] 3828827=test_human_typo
[816/870] 3828827=test_reline
[817/870] 3828827=test_memory_view
[818/870] 3828827=test_tcp
[819/870] 3828826=test_io_buffer
[820/870] 3828826=test_rdoc_rdoc
[821/870] 3828827=test_assignment
[822/870] 3828826=test_grapheme_breaks
[823/870] 3828826=test_gem_commands_yank_command
[824/870] 3828830=test_object_references
[825/870] 3828830=test_win32ole_param_event
[826/870] 3828830=test_bug-5832
[827/870] 3828830=test_err_in_callback
[828/870] 3828830=test_rdoc_stats
[829/870] 3828830=test_rdoc_markup_attributes
[830/870] 3828830=test_rdoc_store
[831/870] 3828826=test_resize
[832/870] 3828826=test_rdoc_parser_changelog
[833/870] 3828826=parameters_signature_test
[834/870] 3828826=test_store
[835/870] 3828826=test_object
[836/870] 3828826=test_provider
[837/870] 3828830=test_rdoc_markup_document
[838/870] 3828826=test_gem_gemcutter_utilities
[839/870] 3828830=test_buffering
[840/870] 3828830=test_svcb_https
[841/870] 3828830=test_inadvertent_creation
[842/870] 3828830=test_coderange
[843/870] 3828830=test_default_gems
[844/870] 3828830=test_gem_console_ui
[845/870] 3828830=test_len
[846/870] 3828830=test_gc_compact
[847/870] 3828827=test_ossl
[848/870] 3828826=test_enumerator_kw
[849/870] 3828826=newline_test
[850/870] 3828826=test_ruby_lex
[851/870] 3828826=test_gem_ext_cargo_builder_link_flag_converter
[852/870] 3828826=test_keyword
[853/870] 3828826=test_call
[854/870] 3828826=test_backtrace
[855/870] 3828826=test_gem_safe_marshal
[856/870] 3828826=test_date_new
[857/870] 3828826=test_bug-3571
[858/870] 3828826=test_win32ole_event
[859/870] 3828826=test_require_path_check
[860/870] 3828826=test_folderitem2_invokeverb
[861/870] 3828826=test_gem_resolver_api_specification
[862/870] 3828826=test_optimization
[863/870] 3828830=test_variable_name_check
[864/870] 3828830=test_ole_methods
[865/870] 3828830=test_date_parse
[866/870] 3828830=test_gem_resolver_index_set
[867/870] 3828830=test_exception_at_throwing
[868/870] 3828830=test_pkey_ec
[869/870] 3828830=test_rdoc_class_module
[870/870] 3828830=test_thread
Finished tests in 311.005905s, 81.0081 tests/s, 30548.6708 assertions/s.
25194 tests, 9500817 assertions, 0 failures, 0 errors, 256 skips

ruby -v: ruby 3.4.0dev (2024-02-23T03:42:44Z master a154ea0c91) +YJIT [x86_64-linux]
$$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j4'" exit with 0.
$$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j4'
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-yjit/include -I/tmp/ruby/src/trunk-yjit -I/tmp/ruby/src/trunk-yjit/prism -I/tmp/ruby/src/trunk-yjit/enc/unicode/15.0.0  
	CPPFLAGS =  -DYJIT_FORCE_ENABLE 
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = 
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-yjit/yjit/target/release/' /tmp/ruby/src/trunk-yjit/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

generating enc.mk
generating encdb.h
encdb.h unchanged
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-yjit/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/debug-1.9.1/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/racc-1.7.3/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
make[1]: Entering directory '/tmp/ruby/build/trunk-yjit'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-yjit'
$ /tmp/ruby/build/trunk-yjit/miniruby -I/tmp/ruby/src/trunk-yjit/lib /tmp/ruby/src/trunk-yjit/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-yjit --extout=.ext -- /tmp/ruby/src/trunk-yjit/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-yjit/spec/default.mspec --error-output stderr --debug
description_with_yjit
     0 .........................................................................
    73 .........................................................................
   146 .........................................................................
   219 .........................................................................
   292 .........................................................................
   365 .........................................................................
   438 .........................................................................
   511 .........................................................................
   584 .........................................................................
   657 .........................................................................
   730 .........................................................................
   803 .........................................................................
   876 .........................................................................
   949 .........................................................................
  1022 .........................................................................
  1095 .........................................................................
  1168 .........................................................................
  1241 .........................................................................
  1314 .........................................................................
  1387 .........................................................................
  1460 .........................................................................
  1533 .........................................................................
  1606 .........................................................................
  1679 .........................................................................
  1752 .........................................................................
  1825 .........................................................................
  1898 .........................................................................
  1971 .........................................................................
  2044 .........................................................................
  2117 .........................................................................
  2190 .........................................................................
  2263 .........................................................................
  2336 .........................................................................
  2409 .........................................................................
  2482 .........................................................................
  2555 .........................................................................
  2628 .........................................................................
  2701 .........................................................................
  2774 .........................................................................
  2847 .........................................................................
  2920 .........................................................................
  2993 .........................................................................
  3066 .........................................................................
  3139 .........................................................................
  3212 .........................................................................
  3285 .........................................................................
  3358 ..................................................................

Finished in 172.976540 seconds

3424 files, 32110 examples, 183327 expectations, 0 failures, 0 errors, 0 tagged
$$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j4'" exit with 0.
raw logfile