# Logfile created on 2023-10-26 19:53:19 +0000 by logger.rb/v1.4.3
#<BuildRuby:0x0000557cb06d56f0 @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-gc-asserts", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-gc-asserts", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-gc-asserts", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-gc-asserts", @configure_opts=["--enable-shared"], @build_opts="DEFS=\"-DRGENGC_CHECK_MODE=2\"", @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=21600, @logfile="/home/ko1/ruby/logs/brlog.trunk-gc-asserts.20231026-195319", @ruby_env=[["RUBY_DEBUG", "ci"], ["RUBY_TEST_SUBPROCESS_TIMEOUT_SCALE", "30"]], @make="make", @logger=#<Logger:0x0000557cb075e838 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x0000557cb075e6f8 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0000557cb075e568 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-gc-asserts.20231026-195319", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-gc-asserts.20231026-195319>, @binmode=false, @mon_data=#<Monitor:0x0000557cb075e4a0>, @mon_data_owner_object_id=860>>>
$$$[beg] make update-unicode DEFS="-DRGENGC_CHECK_MODE=2"
make: Nothing to be done for 'update-unicode'.
$$$[end] "make update-unicode DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make update-download DEFS="-DRGENGC_CHECK_MODE=2"
tool/config.guess already exists
tool/config.sub already exists
Update rbs to 33813a60752624d58dfe5ae770b39bfaf29fbaf1
echo 33813a60752624d58dfe5ae770b39bfaf29fbaf1 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision unchanged
Update debug to 927587afb6aac69b358b86a01f602d207053e8d2
echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.revision unchanged
$$$[end] "make update-download DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make update-rubyspec DEFS="-DRGENGC_CHECK_MODE=2"
make: Nothing to be done for 'update-rubyspec'.
$$$[end] "make update-rubyspec DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make update-src DEFS="-DRGENGC_CHECK_MODE=2"
From https://github.com/ruby/ruby
2573d56..719b40b master -> origin/master
Updating 2573d56..719b40b
Fast-forward
common.mk | 10 +
lib/prism/debug.rb | 36 +-
lib/prism/desugar_compiler.rb | 2 +-
lib/prism/parse_result.rb | 26 +-
lib/prism/prism.gemspec | 1 +
prism/config.yml | 37 +-
prism/extension.c | 26 +
prism/parser.h | 1 +
prism/prettyprint.h | 15 +
prism/prism.c | 294 +--
prism/prism.h | 14 +-
prism/templates/lib/prism/node.rb.erb | 8 +-
prism/templates/src/prettyprint.c.erb | 223 ++-
prism/templates/src/serialize.c.erb | 82 +-
prism/util/pm_buffer.c | 59 +-
prism/util/pm_buffer.h | 14 +-
prism/util/pm_constant_pool.c | 2 +-
prism/util/pm_constant_pool.h | 2 +-
prism/util/pm_newline_list.c | 62 +-
prism/util/pm_newline_list.h | 2 +-
prism_compile.c | 86 +-
ruby.c | 11 +-
test/prism/comments_test.rb | 99 +-
test/prism/constant_path_node_test.rb | 3 +-
test/prism/errors_test.rb | 10 +-
test/prism/fixtures/variables.txt | 1 +
test/prism/location_test.rb | 25 +-
test/prism/newline_test.rb | 8 +-
test/prism/snapshots/arithmetic.txt | 185 +-
test/prism/snapshots/arrays.txt | 729 +++----
test/prism/snapshots/begin_ensure.txt | 141 +-
test/prism/snapshots/blocks.txt | 308 +--
test/prism/snapshots/break.txt | 185 +-
test/prism/snapshots/case.txt | 49 +-
test/prism/snapshots/classes.txt | 21 +-
test/prism/snapshots/constants.txt | 214 +-
test/prism/snapshots/dash_heredocs.txt | 183 +-
test/prism/snapshots/dos_endings.txt | 102 +-
test/prism/snapshots/embdoc_no_newline_at_end.txt | 4 +-
test/prism/snapshots/endless_methods.txt | 29 +-
test/prism/snapshots/for.txt | 8 +-
.../heredoc_with_escaped_newline_at_start.txt | 62 +-
.../snapshots/heredoc_with_trailing_newline.txt | 2 +-
test/prism/snapshots/heredocs_nested.txt | 18 +-
.../snapshots/heredocs_with_ignored_newlines.txt | 38 +-
...eredocs_with_ignored_newlines_and_non_empty.txt | 2 +-
test/prism/snapshots/if.txt | 56 +-
test/prism/snapshots/integer_operations.txt | 254 +--
test/prism/snapshots/keyword_method_names.txt | 65 +-
test/prism/snapshots/lambda.txt | 7 +-
test/prism/snapshots/method_calls.txt | 2104 ++++++++++----------
test/prism/snapshots/methods.txt | 203 +-
test/prism/snapshots/modules.txt | 7 +-
test/prism/snapshots/newline_terminated.txt | 70 +-
test/prism/snapshots/next.txt | 164 +-
test/prism/snapshots/patterns.txt | 15 +-
test/prism/snapshots/procs.txt | 19 +-
test/prism/snapshots/ranges.txt | 17 +-
test/prism/snapshots/regex.txt | 70 +-
test/prism/snapshots/rescue.txt | 129 +-
test/prism/snapshots/return.txt | 177 +-
.../snapshots/seattlerb/TestRubyParserShared.txt | 43 +-
test/prism/snapshots/seattlerb/assoc_label.txt | 29 +-
.../snapshots/seattlerb/attr_asgn_colon_id.txt | 7 +-
.../snapshots/seattlerb/attrasgn_array_arg.txt | 23 +-
.../snapshots/seattlerb/attrasgn_array_lhs.txt | 97 +-
.../seattlerb/attrasgn_primary_dot_constant.txt | 7 +-
.../seattlerb/backticks_interpolation_line.txt | 43 +-
test/prism/snapshots/seattlerb/bang_eq.txt | 7 +-
test/prism/snapshots/seattlerb/block_arg__bare.txt | 2 +-
test/prism/snapshots/seattlerb/block_break.txt | 90 +-
.../seattlerb/block_call_defn_call_block_call.txt | 73 +-
.../seattlerb/block_call_dot_op2_brace_block.txt | 23 +-
.../block_call_dot_op2_cmd_args_do_block.txt | 46 +-
.../seattlerb/block_call_operation_colon.txt | 23 +-
.../seattlerb/block_call_operation_dot.txt | 23 +-
.../seattlerb/block_call_paren_call_block_call.txt | 35 +-
.../seattlerb/block_command_operation_colon.txt | 26 +-
.../seattlerb/block_command_operation_dot.txt | 26 +-
.../seattlerb/block_decomp_anon_splat_arg.txt | 16 +-
.../snapshots/seattlerb/block_decomp_arg_splat.txt | 20 +-
.../seattlerb/block_decomp_arg_splat_arg.txt | 24 +-
.../snapshots/seattlerb/block_decomp_splat.txt | 20 +-
test/prism/snapshots/seattlerb/block_next.txt | 90 +-
.../snapshots/seattlerb/block_paren_splat.txt | 24 +-
test/prism/snapshots/seattlerb/block_return.txt | 90 +-
test/prism/snapshots/seattlerb/bug169.txt | 11 +-
test/prism/snapshots/seattlerb/bug179.txt | 23 +-
test/prism/snapshots/seattlerb/bug236.txt | 2 +-
test/prism/snapshots/seattlerb/bug_187.txt | 85 +-
test/prism/snapshots/seattlerb/bug_249.txt | 135 +-
test/prism/snapshots/seattlerb/bug_args__19.txt | 10 +-
test/prism/snapshots/seattlerb/bug_args_masgn.txt | 10 +-
test/prism/snapshots/seattlerb/bug_args_masgn2.txt | 20 +-
.../seattlerb/bug_args_masgn_outer_parens__19.txt | 20 +-
.../seattlerb/bug_call_arglist_parens.txt | 69 +-
test/prism/snapshots/seattlerb/bug_comma.txt | 35 +-
test/prism/snapshots/seattlerb/bug_hash_args.txt | 37 +-
.../seattlerb/bug_hash_args_trailing_comma.txt | 37 +-
test/prism/snapshots/seattlerb/bug_masgn_right.txt | 10 +-
test/prism/snapshots/seattlerb/call_and.txt | 7 +-
test/prism/snapshots/seattlerb/call_arg_assoc.txt | 27 +-
.../snapshots/seattlerb/call_arg_assoc_kwsplat.txt | 43 +-
.../prism/snapshots/seattlerb/call_arg_kwsplat.txt | 37 +-
.../snapshots/seattlerb/call_args_assoc_quoted.txt | 117 +-
.../seattlerb/call_args_assoc_trailing_comma.txt | 27 +-
.../snapshots/seattlerb/call_args_command.txt | 52 +-
test/prism/snapshots/seattlerb/call_array_arg.txt | 31 +-
.../snapshots/seattlerb/call_array_block_call.txt | 45 +-
.../seattlerb/call_array_lambda_block_call.txt | 35 +-
.../seattlerb/call_array_lit_inline_hash.txt | 47 +-
test/prism/snapshots/seattlerb/call_assoc.txt | 23 +-
test/prism/snapshots/seattlerb/call_assoc_new.txt | 29 +-
.../seattlerb/call_assoc_new_if_multiline.txt | 71 +-
.../seattlerb/call_assoc_trailing_comma.txt | 23 +-
.../snapshots/seattlerb/call_bang_command_call.txt | 7 +-
.../snapshots/seattlerb/call_bang_squiggle.txt | 7 +-
.../seattlerb/call_begin_call_block_call.txt | 73 +-
test/prism/snapshots/seattlerb/call_carat.txt | 7 +-
test/prism/snapshots/seattlerb/call_div.txt | 7 +-
test/prism/snapshots/seattlerb/call_eq3.txt | 7 +-
test/prism/snapshots/seattlerb/call_gt.txt | 7 +-
test/prism/snapshots/seattlerb/call_kwsplat.txt | 17 +-
test/prism/snapshots/seattlerb/call_lt.txt | 7 +-
test/prism/snapshots/seattlerb/call_lte.txt | 7 +-
test/prism/snapshots/seattlerb/call_pipe.txt | 7 +-
test/prism/snapshots/seattlerb/call_rshift.txt | 7 +-
.../snapshots/seattlerb/call_self_brackets.txt | 7 +-
test/prism/snapshots/seattlerb/call_spaceship.txt | 7 +-
.../seattlerb/call_stabby_do_end_with_block.txt | 25 +-
.../seattlerb/call_stabby_with_braces_block.txt | 25 +-
test/prism/snapshots/seattlerb/call_star.txt | 7 +-
test/prism/snapshots/seattlerb/call_star2.txt | 7 +-
.../snapshots/seattlerb/call_trailing_comma.txt | 7 +-
.../snapshots/seattlerb/defn_arg_asplat_arg.txt | 2 +-
.../snapshots/seattlerb/defn_arg_forward_args.txt | 11 +-
.../snapshots/seattlerb/defn_args_forward_args.txt | 21 +-
.../snapshots/seattlerb/defn_endless_command.txt | 7 +-
.../seattlerb/defn_endless_command_rescue.txt | 19 +-
.../snapshots/seattlerb/defn_forward_args.txt | 5 +-
.../seattlerb/defn_forward_args__no_parens.txt | 5 +-
test/prism/snapshots/seattlerb/defn_kwarg_env.txt | 19 +-
.../seattlerb/defn_kwarg_kwsplat_anon.txt | 2 +-
test/prism/snapshots/seattlerb/defn_oneliner.txt | 9 +-
.../snapshots/seattlerb/defn_oneliner_rescue.txt | 27 +-
test/prism/snapshots/seattlerb/defn_splat_arg.txt | 2 +-
.../seattlerb/defs_as_arg_with_do_block_inside.txt | 87 +-
.../snapshots/seattlerb/defs_endless_command.txt | 7 +-
.../seattlerb/defs_endless_command_rescue.txt | 19 +-
test/prism/snapshots/seattlerb/defs_oneliner.txt | 9 +-
.../snapshots/seattlerb/defs_oneliner_rescue.txt | 27 +-
test/prism/snapshots/seattlerb/difficult0_.txt | 109 +-
.../seattlerb/difficult1_line_numbers.txt | 86 +-
.../seattlerb/difficult1_line_numbers2.txt | 24 +-
test/prism/snapshots/seattlerb/difficult2_.txt | 44 +-
test/prism/snapshots/seattlerb/difficult3_.txt | 24 +-
test/prism/snapshots/seattlerb/difficult3_5.txt | 63 +-
test/prism/snapshots/seattlerb/difficult3__10.txt | 20 +-
test/prism/snapshots/seattlerb/difficult3__11.txt | 16 +-
test/prism/snapshots/seattlerb/difficult3__12.txt | 16 +-
test/prism/snapshots/seattlerb/difficult3__6.txt | 24 +-
test/prism/snapshots/seattlerb/difficult3__7.txt | 20 +-
test/prism/snapshots/seattlerb/difficult3__8.txt | 20 +-
test/prism/snapshots/seattlerb/difficult3__9.txt | 20 +-
test/prism/snapshots/seattlerb/difficult6_.txt | 23 +-
test/prism/snapshots/seattlerb/difficult6__7.txt | 19 +-
test/prism/snapshots/seattlerb/difficult6__8.txt | 19 +-
test/prism/snapshots/seattlerb/do_bug.txt | 7 +-
test/prism/snapshots/seattlerb/dstr_lex_state.txt | 13 +-
...eq_begin_why_wont_people_use_their_spacebar.txt | 45 +-
test/prism/snapshots/seattlerb/expr_not_bang.txt | 23 +-
.../seattlerb/heredoc__backslash_dos_format.txt | 4 +-
.../snapshots/seattlerb/heredoc_backslash_nl.txt | 6 +-
.../snapshots/seattlerb/heredoc_bad_hex_escape.txt | 4 +-
.../snapshots/seattlerb/heredoc_bad_oct_escape.txt | 4 +-
.../snapshots/seattlerb/heredoc_comma_arg.txt | 6 +-
test/prism/snapshots/seattlerb/heredoc_lineno.txt | 4 +-
test/prism/snapshots/seattlerb/heredoc_nested.txt | 14 +-
.../prism/snapshots/seattlerb/heredoc_squiggly.txt | 14 +-
...edoc_squiggly_blank_line_plus_interpolation.txt | 87 +-
.../seattlerb/heredoc_squiggly_blank_lines.txt | 14 +-
.../snapshots/seattlerb/heredoc_squiggly_empty.txt | 4 +-
.../seattlerb/heredoc_squiggly_interp.txt | 14 +-
.../seattlerb/heredoc_squiggly_no_indent.txt | 4 +-
.../snapshots/seattlerb/heredoc_squiggly_tabs.txt | 10 +-
.../seattlerb/heredoc_squiggly_tabs_extra.txt | 10 +-
.../heredoc_squiggly_visually_blank_lines.txt | 14 +-
.../heredoc_trailing_slash_continued_call.txt | 4 +-
test/prism/snapshots/seattlerb/heredoc_unicode.txt | 4 +-
.../heredoc_with_carriage_return_escapes.txt | 4 +-
...eredoc_with_carriage_return_escapes_windows.txt | 4 +-
.../heredoc_with_extra_carriage_horrible_mix.txt | 4 +-
.../heredoc_with_extra_carriage_returns.txt | 4 +-
...heredoc_with_extra_carriage_returns_windows.txt | 4 +-
...h_interpolation_and_carriage_return_escapes.txt | 6 +-
...olation_and_carriage_return_escapes_windows.txt | 6 +-
.../heredoc_with_not_global_interpolation.txt | 4 +-
.../heredoc_with_only_carriage_returns.txt | 4 +-
.../heredoc_with_only_carriage_returns_windows.txt | 4 +-
test/prism/snapshots/seattlerb/if_symbol.txt | 13 +-
test/prism/snapshots/seattlerb/index_0.txt | 23 +-
test/prism/snapshots/seattlerb/iter_args_2__19.txt | 10 +-
test/prism/snapshots/seattlerb/iter_args_3.txt | 10 +-
test/prism/snapshots/seattlerb/label_vs_string.txt | 15 +-
.../snapshots/seattlerb/lambda_do_vs_brace.txt | 88 +-
.../seattlerb/lasgn_call_bracket_rescue_arg.txt | 7 +-
.../seattlerb/lasgn_call_nobracket_rescue_arg.txt | 19 +-
test/prism/snapshots/seattlerb/lasgn_command.txt | 7 +-
.../seattlerb/lasgn_lasgn_command_call.txt | 7 +-
.../snapshots/seattlerb/masgn_anon_splat_arg.txt | 14 +-
.../snapshots/seattlerb/masgn_arg_colon_arg.txt | 4 +-
test/prism/snapshots/seattlerb/masgn_arg_ident.txt | 4 +-
.../snapshots/seattlerb/masgn_arg_splat_arg.txt | 22 +-
test/prism/snapshots/seattlerb/masgn_colon2.txt | 4 +-
test/prism/snapshots/seattlerb/masgn_colon3.txt | 4 +-
.../snapshots/seattlerb/masgn_command_call.txt | 23 +-
.../snapshots/seattlerb/masgn_double_paren.txt | 8 +-
test/prism/snapshots/seattlerb/masgn_lhs_splat.txt | 16 +-
test/prism/snapshots/seattlerb/masgn_paren.txt | 4 +-
test/prism/snapshots/seattlerb/masgn_splat_arg.txt | 20 +-
.../snapshots/seattlerb/masgn_splat_arg_arg.txt | 20 +-
test/prism/snapshots/seattlerb/masgn_star.txt | 10 +-
.../snapshots/seattlerb/masgn_var_star_var.txt | 16 +-
.../snapshots/seattlerb/messy_op_asgn_lineno.txt | 86 +-
.../seattlerb/method_call_assoc_trailing_comma.txt | 23 +-
.../seattlerb/method_call_trailing_comma.txt | 7 +-
.../snapshots/seattlerb/mlhs_back_anonsplat.txt | 16 +-
test/prism/snapshots/seattlerb/mlhs_back_splat.txt | 22 +-
.../snapshots/seattlerb/mlhs_front_anonsplat.txt | 14 +-
.../prism/snapshots/seattlerb/mlhs_front_splat.txt | 20 +-
test/prism/snapshots/seattlerb/mlhs_keyword.txt | 7 +-
.../snapshots/seattlerb/mlhs_mid_anonsplat.txt | 16 +-
test/prism/snapshots/seattlerb/mlhs_mid_splat.txt | 22 +-
test/prism/snapshots/seattlerb/mlhs_rescue.txt | 4 +-
.../seattlerb/multiline_hash_declaration.txt | 99 +-
.../snapshots/seattlerb/op_asgn_command_call.txt | 7 +-
.../seattlerb/op_asgn_dot_ident_command_call.txt | 7 +-
.../seattlerb/op_asgn_index_command_call.txt | 24 +-
.../op_asgn_primary_colon_const_command_call.txt | 23 +-
..._asgn_primary_colon_identifier_command_call.txt | 23 +-
.../op_asgn_val_dot_ident_command_call.txt | 7 +-
.../prism/snapshots/seattlerb/parse_line_block.txt | 9 +-
...rse_line_call_ivar_arg_no_parens_line_break.txt | 7 +-
.../parse_line_call_ivar_line_break_paren.txt | 7 +-
.../seattlerb/parse_line_call_no_args.txt | 9 +-
.../seattlerb/parse_line_defn_complex.txt | 18 +-
.../seattlerb/parse_line_dstr_soft_newline.txt | 4 +-
.../snapshots/seattlerb/parse_line_heredoc.txt | 13 +-
.../seattlerb/parse_line_heredoc_evstr.txt | 10 +-
.../seattlerb/parse_line_heredoc_hardnewline.txt | 4 +-
.../seattlerb/parse_line_heredoc_regexp_chars.txt | 13 +-
.../seattlerb/parse_line_iter_call_no_parens.txt | 32 +-
.../seattlerb/parse_line_iter_call_parens.txt | 32 +-
.../snapshots/seattlerb/parse_line_return.txt | 7 +-
.../parse_line_str_with_newline_escape.txt | 17 +-
.../snapshots/seattlerb/parse_line_to_ary.txt | 4 +-
.../seattlerb/parse_opt_call_args_assocs_comma.txt | 23 +-
.../seattlerb/parse_opt_call_args_lit_comma.txt | 7 +-
.../snapshots/seattlerb/pct_Q_backslash_nl.txt | 2 +-
test/prism/snapshots/seattlerb/pct_nl.txt | 14 +-
.../seattlerb/pct_w_heredoc_interp_nested.txt | 4 +-
test/prism/snapshots/seattlerb/qsymbols_interp.txt | 7 +-
.../snapshots/seattlerb/quoted_symbol_hash_arg.txt | 33 +-
test/prism/snapshots/seattlerb/rescue_parens.txt | 63 +-
.../snapshots/seattlerb/return_call_assocs.txt | 314 +--
test/prism/snapshots/seattlerb/safe_attrasgn.txt | 7 +-
.../snapshots/seattlerb/safe_attrasgn_constant.txt | 7 +-
.../snapshots/seattlerb/safe_call_operator.txt | 7 +-
test/prism/snapshots/seattlerb/safe_calls.txt | 7 +-
test/prism/snapshots/seattlerb/safe_op_asgn.txt | 7 +-
.../seattlerb/slashy_newlines_within_string.txt | 38 +-
.../snapshots/seattlerb/stabby_block_iter_call.txt | 83 +-
.../stabby_block_iter_call_no_target_with_arg.txt | 72 +-
test/prism/snapshots/seattlerb/str_backslashes.txt | 15 +-
.../str_double_double_escaped_newline.txt | 15 +-
.../seattlerb/str_double_escaped_newline.txt | 15 +-
.../snapshots/seattlerb/str_double_newline.txt | 15 +-
.../snapshots/seattlerb/str_heredoc_interp.txt | 6 +-
.../seattlerb/str_interp_ternary_or_label.txt | 38 +-
.../str_single_double_escaped_newline.txt | 15 +-
.../seattlerb/str_single_escaped_newline.txt | 15 +-
.../snapshots/seattlerb/str_single_newline.txt | 15 +-
test/prism/snapshots/seattlerb/super_arg.txt | 7 +-
test/prism/snapshots/seattlerb/thingy.txt | 14 +-
test/prism/snapshots/seattlerb/utf8_bom.txt | 7 +-
test/prism/snapshots/seattlerb/yield_arg.txt | 7 +-
.../snapshots/seattlerb/yield_call_assocs.txt | 314 +--
test/prism/snapshots/single_quote_heredocs.txt | 4 +-
test/prism/snapshots/spanning_heredoc.txt | 425 ++--
test/prism/snapshots/strings.txt | 15 +-
test/prism/snapshots/super.txt | 52 +-
test/prism/snapshots/tilde_heredocs.txt | 198 +-
test/prism/snapshots/unescaping.txt | 4 +-
test/prism/snapshots/unless.txt | 23 +-
.../unparser/corpus/literal/assignment.txt | 619 +++---
.../snapshots/unparser/corpus/literal/block.txt | 112 +-
.../snapshots/unparser/corpus/literal/case.txt | 30 +-
.../snapshots/unparser/corpus/literal/class.txt | 27 +-
.../snapshots/unparser/corpus/literal/control.txt | 184 +-
.../snapshots/unparser/corpus/literal/def.txt | 28 +-
.../snapshots/unparser/corpus/literal/defined.txt | 4 +-
.../snapshots/unparser/corpus/literal/defs.txt | 7 +-
.../snapshots/unparser/corpus/literal/dstr.txt | 219 +-
.../snapshots/unparser/corpus/literal/empty.txt | 4 +-
.../snapshots/unparser/corpus/literal/flipflop.txt | 28 +-
.../snapshots/unparser/corpus/literal/for.txt | 95 +-
.../snapshots/unparser/corpus/literal/kwbegin.txt | 7 +-
.../snapshots/unparser/corpus/literal/literal.txt | 99 +-
.../snapshots/unparser/corpus/literal/module.txt | 27 +-
.../snapshots/unparser/corpus/literal/opasgn.txt | 204 +-
.../snapshots/unparser/corpus/literal/rescue.txt | 46 +-
.../snapshots/unparser/corpus/literal/send.txt | 1419 ++++++-------
.../snapshots/unparser/corpus/literal/since/27.txt | 9 +-
.../snapshots/unparser/corpus/literal/since/31.txt | 4 +-
.../snapshots/unparser/corpus/literal/since/32.txt | 38 +-
.../snapshots/unparser/corpus/literal/super.txt | 214 +-
.../snapshots/unparser/corpus/literal/while.txt | 23 +-
.../snapshots/unparser/corpus/literal/yield.txt | 66 +-
.../snapshots/unparser/corpus/semantic/block.txt | 30 +-
.../snapshots/unparser/corpus/semantic/def.txt | 23 +-
.../snapshots/unparser/corpus/semantic/dstr.txt | 130 +-
.../snapshots/unparser/corpus/semantic/literal.txt | 48 +-
.../snapshots/unparser/corpus/semantic/send.txt | 141 +-
.../snapshots/unparser/corpus/semantic/while.txt | 15 +-
test/prism/snapshots/until.txt | 23 +-
test/prism/snapshots/variables.txt | 184 +-
test/prism/snapshots/while.txt | 23 +-
.../ambiuous_quoted_label_in_ternary_operator.txt | 15 +-
test/prism/snapshots/whitequark/and_asgn.txt | 11 +-
test/prism/snapshots/whitequark/and_or_masgn.txt | 8 +-
.../snapshots/whitequark/anonymous_blockarg.txt | 2 +-
test/prism/snapshots/whitequark/arg_label.txt | 39 +-
test/prism/snapshots/whitequark/args.txt | 194 +-
.../snapshots/whitequark/args_args_assocs.txt | 98 +-
.../whitequark/args_args_assocs_comma.txt | 49 +-
.../prism/snapshots/whitequark/args_args_comma.txt | 23 +-
test/prism/snapshots/whitequark/args_args_star.txt | 98 +-
test/prism/snapshots/whitequark/args_assocs.txt | 194 +-
.../snapshots/whitequark/args_assocs_comma.txt | 29 +-
.../snapshots/whitequark/args_assocs_legacy.txt | 194 +-
test/prism/snapshots/whitequark/args_cmd.txt | 48 +-
test/prism/snapshots/whitequark/args_star.txt | 58 +-
test/prism/snapshots/whitequark/asgn_cmd.txt | 18 +-
test/prism/snapshots/whitequark/bang_cmd.txt | 23 +-
test/prism/snapshots/whitequark/begin_cmdarg.txt | 65 +-
test/prism/snapshots/whitequark/blockargs.txt | 12 +-
test/prism/snapshots/whitequark/break.txt | 69 +-
test/prism/snapshots/whitequark/break_block.txt | 60 +-
test/prism/snapshots/whitequark/bug_447.txt | 26 +-
test/prism/snapshots/whitequark/bug_452.txt | 39 +-
test/prism/snapshots/whitequark/bug_466.txt | 88 +-
test/prism/snapshots/whitequark/bug_473.txt | 31 +-
test/prism/snapshots/whitequark/bug_480.txt | 39 +-
test/prism/snapshots/whitequark/bug_481.txt | 29 +-
.../whitequark/bug_cmd_string_lookahead.txt | 15 +-
test/prism/snapshots/whitequark/bug_cmdarg.txt | 125 +-
.../whitequark/bug_do_block_in_call_args.txt | 67 +-
.../whitequark/bug_do_block_in_cmdarg.txt | 47 +-
.../whitequark/bug_do_block_in_hash_brace.txt | 615 +++---
test/prism/snapshots/whitequark/bug_heredoc_do.txt | 15 +-
.../snapshots/whitequark/class_super_label.txt | 13 +-
.../snapshots/whitequark/cond_begin_masgn.txt | 4 +-
.../snapshots/whitequark/dedenting_heredoc.txt | 592 +++---
...nterpolating_heredoc_fake_line_continuation.txt | 10 +-
...non_interpolating_heredoc_line_continuation.txt | 10 +-
test/prism/snapshots/whitequark/empty_stmt.txt | 4 +-
test/prism/snapshots/whitequark/endless_method.txt | 14 +-
.../whitequark/endless_method_command_syntax.txt | 200 +-
.../endless_method_forwarded_args_legacy.txt | 5 +-
test/prism/snapshots/whitequark/for.txt | 18 +-
test/prism/snapshots/whitequark/for_mlhs.txt | 19 +-
test/prism/snapshots/whitequark/forward_arg.txt | 5 +-
.../whitequark/forward_arg_with_open_args.txt | 40 +-
.../snapshots/whitequark/forward_args_legacy.txt | 10 +-
.../forwarded_argument_with_kwrestarg.txt | 21 +-
.../whitequark/forwarded_argument_with_restarg.txt | 17 +-
.../snapshots/whitequark/forwarded_kwrestarg.txt | 15 +-
.../forwarded_kwrestarg_with_additional_kwarg.txt | 35 +-
.../snapshots/whitequark/forwarded_restarg.txt | 11 +-
test/prism/snapshots/whitequark/hash_label_end.txt | 67 +-
test/prism/snapshots/whitequark/heredoc.txt | 12 +-
test/prism/snapshots/whitequark/if_masgn__24.txt | 4 +-
.../whitequark/if_while_after_class__since_32.txt | 14 +-
.../snapshots/whitequark/interp_digit_var.txt | 24 +-
.../whitequark/keyword_argument_omission.txt | 91 +-
.../kwoptarg_with_kwrestarg_and_forwarded_args.txt | 15 +-
.../snapshots/whitequark/kwrestarg_unnamed.txt | 2 +-
.../whitequark/lbrace_arg_after_command_args.txt | 25 +-
.../whitequark/lparenarg_after_lvar__since_25.txt | 74 +-
.../snapshots/whitequark/lvar_injecting_match.txt | 15 +-
test/prism/snapshots/whitequark/masgn.txt | 12 +-
test/prism/snapshots/whitequark/masgn_attr.txt | 23 +-
test/prism/snapshots/whitequark/masgn_cmd.txt | 13 +-
test/prism/snapshots/whitequark/masgn_const.txt | 8 +-
test/prism/snapshots/whitequark/masgn_nested.txt | 28 +-
test/prism/snapshots/whitequark/masgn_splat.txt | 144 +-
.../whitequark/newline_in_hash_argument.txt | 58 +-
test/prism/snapshots/whitequark/next.txt | 69 +-
test/prism/snapshots/whitequark/next_block.txt | 60 +-
.../whitequark/non_lvar_injecting_match.txt | 15 +-
test/prism/snapshots/whitequark/not_cmd.txt | 23 +-
test/prism/snapshots/whitequark/not_masgn__24.txt | 4 +-
.../whitequark/numbered_args_after_27.txt | 36 +-
test/prism/snapshots/whitequark/op_asgn_cmd.txt | 92 +-
test/prism/snapshots/whitequark/op_asgn_index.txt | 11 +-
.../snapshots/whitequark/op_asgn_index_cmd.txt | 34 +-
test/prism/snapshots/whitequark/or_asgn.txt | 11 +-
test/prism/snapshots/whitequark/parser_bug_272.txt | 7 +-
test/prism/snapshots/whitequark/parser_bug_525.txt | 45 +-
test/prism/snapshots/whitequark/parser_bug_604.txt | 68 +-
test/prism/snapshots/whitequark/parser_bug_640.txt | 4 +-
...r_drops_truncated_parts_of_squiggly_heredoc.txt | 6 +-
.../parser_slash_slash_n_escaping_in_literals.txt | 12 +-
.../pattern_matching__FILE__LINE_literals.txt | 7 +-
test/prism/snapshots/whitequark/procarg0.txt | 10 +-
.../snapshots/whitequark/rescue_mod_masgn.txt | 4 +-
.../prism/snapshots/whitequark/restarg_unnamed.txt | 2 +-
test/prism/snapshots/whitequark/return.txt | 69 +-
test/prism/snapshots/whitequark/return_block.txt | 60 +-
test/prism/snapshots/whitequark/ruby_bug_10653.txt | 9 +-
test/prism/snapshots/whitequark/ruby_bug_11107.txt | 63 +-
test/prism/snapshots/whitequark/ruby_bug_11380.txt | 57 +-
test/prism/snapshots/whitequark/ruby_bug_11873.txt | 1086 +++++-----
.../snapshots/whitequark/ruby_bug_11873_a.txt | 1682 ++++++++--------
.../snapshots/whitequark/ruby_bug_11873_b.txt | 149 +-
test/prism/snapshots/whitequark/ruby_bug_11989.txt | 15 +-
test/prism/snapshots/whitequark/ruby_bug_11990.txt | 33 +-
test/prism/snapshots/whitequark/ruby_bug_12073.txt | 60 +-
test/prism/snapshots/whitequark/ruby_bug_12402.txt | 406 ++--
test/prism/snapshots/whitequark/ruby_bug_12669.txt | 52 +-
test/prism/snapshots/whitequark/ruby_bug_12686.txt | 45 +-
test/prism/snapshots/whitequark/ruby_bug_14690.txt | 34 +-
test/prism/snapshots/whitequark/ruby_bug_15789.txt | 172 +-
test/prism/snapshots/whitequark/send_attr_asgn.txt | 21 +-
.../whitequark/send_attr_asgn_conditional.txt | 7 +-
test/prism/snapshots/whitequark/send_binary_op.txt | 147 +-
.../snapshots/whitequark/send_block_chain_cmd.txt | 187 +-
test/prism/snapshots/whitequark/send_call.txt | 14 +-
test/prism/snapshots/whitequark/send_index.txt | 11 +-
.../prism/snapshots/whitequark/send_index_asgn.txt | 15 +-
.../whitequark/send_index_asgn_legacy.txt | 15 +-
test/prism/snapshots/whitequark/send_index_cmd.txt | 48 +-
.../snapshots/whitequark/send_index_legacy.txt | 11 +-
test/prism/snapshots/whitequark/send_lambda.txt | 2 +-
test/prism/snapshots/whitequark/send_plain_cmd.txt | 69 +-
test/prism/snapshots/whitequark/send_self.txt | 7 +-
.../prism/snapshots/whitequark/send_self_block.txt | 7 +-
.../whitequark/slash_newline_in_heredocs.txt | 14 +-
test/prism/snapshots/whitequark/space_args_arg.txt | 19 +-
.../snapshots/whitequark/space_args_arg_block.txt | 57 +-
.../snapshots/whitequark/space_args_arg_call.txt | 39 +-
.../whitequark/space_args_arg_newline.txt | 19 +-
.../snapshots/whitequark/space_args_block.txt | 11 +-
test/prism/snapshots/whitequark/space_args_cmd.txt | 60 +-
test/prism/snapshots/whitequark/super.txt | 46 +-
test/prism/snapshots/whitequark/super_block.txt | 43 +-
.../snapshots/whitequark/trailing_forward_arg.txt | 15 +-
.../whitequark/unary_num_pow_precedence.txt | 21 +-
.../prism/snapshots/whitequark/var_op_asgn_cmd.txt | 9 +-
test/prism/snapshots/whitequark/yield.txt | 46 +-
test/prism/snapshots/yield.txt | 22 +-
test/ruby/test_compile_prism.rb | 8 +
462 files changed, 14149 insertions(+), 12737 deletions(-)
create mode 100644 prism/prettyprint.h
Latest commit hash = 719b40bdf6
$$$[end] "make update-src DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make after-update DEFS="-DRGENGC_CHECK_MODE=2"
sed 's/{\$([^(){}]*)[^{}]*}//g' /tmp/ruby/src/trunk-gc-asserts/common.mk > uncommon.mk
/tmp/ruby/src/trunk-gc-asserts/revision.h updated
generating /tmp/ruby/src/trunk-gc-asserts/ext/ripper/eventids2table.c
make[1]: Entering directory '/tmp/ruby/src/trunk-gc-asserts/ext/ripper'
make[1]: Nothing to be done for 'src'.
make[1]: Leaving directory '/tmp/ruby/src/trunk-gc-asserts/ext/ripper'
/bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp
rbconfig.rb unchanged
generating x86_64-linux-fake.rb
x86_64-linux-fake.rb updated
generating enc.mk
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
Update rbs to 33813a60752624d58dfe5ae770b39bfaf29fbaf1
echo 33813a60752624d58dfe5ae770b39bfaf29fbaf1 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision unchanged
Update debug to 927587afb6aac69b358b86a01f602d207053e8d2
echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.revision unchanged
$$$[end] "make after-update DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make miniruby DEFS="-DRGENGC_CHECK_MODE=2"
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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS = -DRGENGC_CHECK_MODE=2
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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-gc-asserts/compile.c
compiling /tmp/ruby/src/trunk-gc-asserts/iseq.c
compiling /tmp/ruby/src/trunk-gc-asserts/ruby.c
compiling /tmp/ruby/src/trunk-gc-asserts/version.c
compiling prism/api_node.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/api_pack.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/extension.c
compiling prism/node.c
compiling prism/prettyprint.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/regexp.c
compiling prism/serialize.c
compiling prism/token_type.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_buffer.c
/tmp/ruby/src/trunk-gc-asserts/prism/util/pm_buffer.c: In function 'pm_buffer_append_format':
/tmp/ruby/src/trunk-gc-asserts/prism/util/pm_buffer.c:78:5: warning: function 'pm_buffer_append_format' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
78 | int result = vsnprintf(NULL, 0, format, arguments);
| ^~~
/tmp/ruby/src/trunk-gc-asserts/prism/util/pm_buffer.c:88:5: warning: function 'pm_buffer_append_format' might be a candidate for 'gnu_printf' format attribute [-Wsuggest-attribute=format]
88 | vsnprintf(buffer->value + cursor, length, format, arguments);
| ^~~~~~~~~
/tmp/ruby/src/trunk-gc-asserts/prism/util/pm_buffer.c: At top level:
cc1: note: unrecognized command-line option '-Wno-self-assign' may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option '-Wno-parentheses-equality' may have been intended to silence earlier diagnostics
cc1: note: unrecognized command-line option '-Wno-constant-logical-operand' may have been intended to silence earlier diagnostics
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_char.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_constant_pool.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_memchr.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_newline_list.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/util/pm_strpbrk.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism/prism.c
compiling /tmp/ruby/src/trunk-gc-asserts/prism_init.c
linking miniruby
$$$[end] "make miniruby DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make ruby DEFS="-DRGENGC_CHECK_MODE=2"
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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS = -DRGENGC_CHECK_MODE=2
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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-gc-asserts/loadpath.c
builtin_binary.inc updated
compiling /tmp/ruby/src/trunk-gc-asserts/builtin.c
linking static-library libruby-static.a
linking shared-library libruby.so.3.3.0
linking ruby
$$$[end] "make ruby DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make all DEFS="-DRGENGC_CHECK_MODE=2"
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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS = -DRGENGC_CHECK_MODE=2
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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
encdb.h unchanged
generating enc.mk
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
building spec/ruby/optional/capi/ext/array_spec.so
building spec/ruby/optional/capi/ext/basic_object_spec.so
building spec/ruby/optional/capi/ext/bignum_spec.so
building spec/ruby/optional/capi/ext/binding_spec.so
building spec/ruby/optional/capi/ext/boolean_spec.so
building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.so
building spec/ruby/optional/capi/ext/class_spec.so
building spec/ruby/optional/capi/ext/class_under_autoload_spec.so
building spec/ruby/optional/capi/ext/complex_spec.so
building spec/ruby/optional/capi/ext/constants_spec.so
building spec/ruby/optional/capi/ext/data_spec.so
building spec/ruby/optional/capi/ext/debug_spec.so
building spec/ruby/optional/capi/ext/encoding_spec.so
building spec/ruby/optional/capi/ext/enumerator_spec.so
building spec/ruby/optional/capi/ext/exception_spec.so
building spec/ruby/optional/capi/ext/fiber_spec.so
building spec/ruby/optional/capi/ext/file_spec.so
building spec/ruby/optional/capi/ext/fixnum_spec.so
building spec/ruby/optional/capi/ext/float_spec.so
building spec/ruby/optional/capi/ext/gc_spec.so
building spec/ruby/optional/capi/ext/globals_spec.so
building spec/ruby/optional/capi/ext/hash_spec.so
building spec/ruby/optional/capi/ext/integer_spec.so
building spec/ruby/optional/capi/ext/io_spec.so
building spec/ruby/optional/capi/ext/kernel_spec.so
building spec/ruby/optional/capi/ext/language_spec.so
building spec/ruby/optional/capi/ext/marshal_spec.so
building spec/ruby/optional/capi/ext/module_spec.so
building spec/ruby/optional/capi/ext/module_under_autoload_spec.so
building spec/ruby/optional/capi/ext/mutex_spec.so
building spec/ruby/optional/capi/ext/numeric_spec.so
building spec/ruby/optional/capi/ext/object_spec.so
building spec/ruby/optional/capi/ext/proc_spec.so
building spec/ruby/optional/capi/ext/range_spec.so
building spec/ruby/optional/capi/ext/rational_spec.so
building spec/ruby/optional/capi/ext/rbasic_spec.so
building spec/ruby/optional/capi/ext/regexp_spec.so
building spec/ruby/optional/capi/ext/st_spec.so
building spec/ruby/optional/capi/ext/string_spec.so
building spec/ruby/optional/capi/ext/struct_spec.so
building spec/ruby/optional/capi/ext/symbol_spec.so
building spec/ruby/optional/capi/ext/thread_spec.so
building spec/ruby/optional/capi/ext/time_spec.so
building spec/ruby/optional/capi/ext/tracepoint_spec.so
building spec/ruby/optional/capi/ext/typed_data_spec.so
building spec/ruby/optional/capi/ext/util_spec.so
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-gc-asserts/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
$$$[end] "make all DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make install DEFS="-DRGENGC_CHECK_MODE=2"
Update rbs to 33813a60752624d58dfe5ae770b39bfaf29fbaf1
echo 33813a60752624d58dfe5ae770b39bfaf29fbaf1 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/rbs.revision unchanged
Update debug to 927587afb6aac69b358b86a01f602d207053e8d2
echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-gc-asserts/tool/ifchange /tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.revision -
/tmp/ruby/src/trunk-gc-asserts/.bundle/.timestamp/debug.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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS = -DRGENGC_CHECK_MODE=2
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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
encdb.h unchanged
generating enc.mk
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating transdb.h
transdb.h unchanged
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-gc-asserts/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
./miniruby -I/tmp/ruby/src/trunk-gc-asserts/lib -I. -I.ext/common /tmp/ruby/src/trunk-gc-asserts/tool/runruby.rb --extout=.ext -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-gc-asserts/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="" --make-flags=" -- DEFS=-DRGENGC_CHECK_MODE=2" --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-gc-asserts/bin
installing base libraries: /tmp/ruby/install/trunk-gc-asserts/lib
installing arch files: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/3.3.0+0/x86_64-linux
installing pkgconfig data: /tmp/ruby/install/trunk-gc-asserts/lib/pkgconfig
installing extension objects: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/3.3.0+0/x86_64-linux
installing extension objects: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/site_ruby/3.3.0+0/x86_64-linux
installing extension objects: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/vendor_ruby/3.3.0+0/x86_64-linux
installing extension headers: /tmp/ruby/install/trunk-gc-asserts/include/ruby-3.3.0+0/x86_64-linux
installing extension scripts: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/3.3.0+0
installing extension scripts: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/site_ruby/3.3.0+0
installing extension scripts: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/vendor_ruby/3.3.0+0
installing extension headers: /tmp/ruby/install/trunk-gc-asserts/include/ruby-3.3.0+0/ruby
installing command scripts: /tmp/ruby/install/trunk-gc-asserts/bin
installing library scripts: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/3.3.0+0
installing common headers: /tmp/ruby/install/trunk-gc-asserts/include/ruby-3.3.0+0
installing manpages: /tmp/ruby/install/trunk-gc-asserts/share/man/man1
installing default gems from lib: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/gems/3.3.0+0
abbrev 0.1.1
base64 0.1.1
benchmark 0.2.1
bundler 2.5.0.dev
cgi 0.3.6
csv 3.2.8
delegate 0.3.0
did_you_mean 1.6.3
drb 2.1.1
english 0.7.2
erb 4.0.3
error_highlight 0.5.1
fileutils 1.7.1
find 0.1.1
forwardable 1.3.3
getoptlong 0.2.0
ipaddr 1.2.5
irb 1.8.3
logger 1.5.3
mutex_m 0.1.2
net-http 0.3.2
net-protocol 0.2.1
observer 0.1.1
open-uri 0.3.0
open3 0.1.2
optparse 0.4.0.pre.1
ostruct 0.5.5
pp 0.4.0
prettyprint 0.1.1
prism 0.15.1
pstore 0.1.2
rdoc 6.5.0
readline 0.0.3
reline 0.3.9
resolv 0.2.2
resolv-replace 0.1.1
rinda 0.1.1
ruby2_keywords 0.0.5
securerandom 0.2.2
set 1.0.3
shellwords 0.1.0
singleton 0.1.1
syntax_suggest 1.1.0
tempfile 0.1.3
time 0.2.2
timeout 0.4.0
tmpdir 0.1.3
tsort 0.1.1
un 0.2.1
uri 0.12.2
weakref 0.1.2
yaml 0.2.1
installing default gems from ext: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/gems/3.3.0+0
bigdecimal 3.1.5
date 3.3.3
digest 3.1.1
etc 1.4.2
fcntl 1.0.2
fiddle 1.1.2
io-console 0.6.1.dev
io-nonblock 0.2.0
io-wait 0.3.0
json 2.6.3
nkf 0.1.3
openssl 3.2.0
pathname 0.2.1
psych 5.1.1.1
stringio 3.0.9
strscan 3.0.7
syslog 0.1.1
zlib 3.0.0
installing bundled gems: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/gems/3.3.0+0
minitest 5.20.0
power_assert 2.0.3
rake 13.0.6
test-unit 3.6.1
rexml 3.2.6
rss 0.3.0
net-ftp 0.2.0
net-imap 0.4.1
net-pop 0.1.2
net-smtp 0.4.0
matrix 0.4.2
prime 0.1.2
rbs 3.2.2
typeprof 0.21.8
debug 1.8.0
racc 1.7.1
installing bundled gem cache: /tmp/ruby/install/trunk-gc-asserts/lib/ruby/gems/3.3.0+0/cache
skipped bundled gems:
rbs-3.2.0.gem not found in bundled_gems
$$$[end] "make install DEFS=\"-DRGENGC_CHECK_MODE=2\"" exit with 0.
$$$[beg] make yes-btest TESTOPTS='-q -j4'
PASS all 1858 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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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.
Ignore setproctitle.o because of setproctitle.c under missing
Ignore strlcat.o because of strlcat.c under missing
Ignore strlcpy.o because of strlcpy.c under missing
Checking leaked global symbols...none
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:condition ..OK 2
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:if/unless ...OK 3
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:case .....OK 5
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:while/until ........OK 8
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:exception ..........OK 10
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:array .......................................OK 39
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:hash ...........................OK 27
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:iterator ...........................................................................................................OK 107
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:float ................................................................................OK 80
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:bignum ...............................OK 31
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:string & char ..............................................................OK 62
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:assignment ..........OK 10
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:call ......OK 6
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:proc .........OK 9
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:signal ..OK 2
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:eval ...........................OK 27
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:system ........OK 8
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:const .....OK 5
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:clone .....OK 5
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:marshal ....OK 4
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:pack ....OK 4
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:math ..OK 2
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:struct ......OK 6
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:variable ............OK 12
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:trace ...OK 3
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:defined? ............OK 12
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:alias ......OK 6
/tmp/ruby/src/trunk-gc-asserts/basictest/test.rb:path .......................OK 23
/tmp/ruby/src/trunk-gc-asserts/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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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-gc-asserts'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-gc-asserts/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
Run options:
--seed=9303
"--ruby=./miniruby -I/tmp/ruby/src/trunk-gc-asserts/lib -I. -I.ext/common /tmp/ruby/src/trunk-gc-asserts/tool/runruby.rb --extout=.ext -- --disable-gems"
--excludes-dir=/tmp/ruby/src/trunk-gc-asserts/test/.excludes
--name=!/memory_leak/
--stderr-on-failure
-j4
# Running tests:
[ 1/902] 1985612=test_formatter
[ 2/902] 1985613=test_reline
[ 3/902] 1985618=test_optarg
[ 4/902] 1985612=test_date
[ 5/902] 1985612=test_yield_block
[ 6/902] 1985614=test_getoptlong
[ 7/902] 1985612=test_gem_local_remote_options
[ 8/902] 1985614=test_exception
[ 9/902] 1985618=test_fileutils
[ 10/902] 1985614=test_gem_ext_rake_builder
[ 11/902] 1985613=test_gem_commands_generate_index_command
[ 12/902] 1985612=test_bn
[ 13/902] 1985612=test_gem_commands_server_command
[ 14/902] 1985612=test_gem_platform
[ 15/902] 1985618=test_cesu8
[ 16/902] 1985618=test_method_cache
[ 17/902] 1985618=test_rdoc_markup_parser
[ 18/902] 1985613=test_method
[ 19/902] 1985612=test_features
[ 20/902] 1985614=test_resize
[ 21/902] 1985614=test_asn1
[ 22/902] 1985614=parse_serialize_test
[ 23/902] 1985618=test_method_name_check
[ 24/902] 1985614=test_require
[ 25/902] 1985618=test_row_separator
[ 26/902] 1985618=test_gem_source_list
[ 27/902] 1985612=test_yaml_special_cases
[ 28/902] 1985612=test_assignment
[ 29/902] 1985613=test_rdoc_markup_pre_process
[ 30/902] 1985618=test_socket
[ 31/902] 1985618=test_complex
[ 32/902] 1985618=test_stream
[ 33/902] 1985618=test_gem_gemcutter_utilities
[ 34/902] 1985613=test_nil
[ 35/902] 1985613=!Nothing_to_test
[ 36/902] 1985613=test_rdoc_parser_rd
[ 37/902] 1985613=test_utf32
[ 38/902] 1985613=test_noarg
[ 39/902] 1985613=test_io
[ 40/902] 1985618=test_quote_empty
[ 41/902] 1985618=test_set_len
[ 42/902] 1985618=test_rdoc_servlet
[ 43/902] 1985614=test_random
[ 44/902] 1985614=test_kernel
[ 45/902] 1985618=test_rdoc_markup_to_label
[ 46/902] 1985618=test_date_marshal
[ 47/902] 1985618=test_gem_commands_unpack_command
[ 48/902] 1985614=test_etc
[ 49/902] 1985618=test_exception_at_throwing
[ 50/902] 1985614=test_gem_resolver_installer_set
[ 51/902] 1985618=test_backtrace
[ 52/902] 1985618=test_to_ary_concat
[ 53/902] 1985614=test_mixed_unicode_escapes
[ 54/902] 1985614=test_gbk
[ 55/902] 1985614=test_pack
[ 56/902] 1985614=test_open3
[ 57/902] 1985614=test_rdoc_markup_to_rdoc
[ 58/902] 1985612=library_symbols_test
[ 59/902] 1985612=test_ftp
[ 60/902] 1985612=test_inlinecache
[ 61/902] 1985612=test_pstore
[ 62/902] 1985612=test_gem_commands_contents_command
[ 63/902] 1985614=test_gem_ext_cargo_builder_link_flag_converter
[ 64/902] 1985612=test_gem_uninstaller
[ 65/902] 1985614=test_gem_specification
[ 66/902] 1985612=test_key_stroke
[ 67/902] 1985612=test_gem_ext_cargo_builder
[ 68/902] 1985612=test_thread
[ 69/902] 1985612=test_proc
[ 70/902] 1985618=test_fiber
[ 71/902] 1985614=test_array
[ 72/902] 1985614=test_gem_commands_uninstall_command
[ 73/902] 1985612=test_win32ole_variable
[ 74/902] 1985612=test_pkey_ec
[ 75/902] 1985612=test_zlib
[ 76/902] 1985614=test_date_new
[ 77/902] 1985614=test_date_parse
[ 78/902] 1985614=test_rdoc_store
[ 79/902] 1985618=regexp_test
[ 80/902] 1985618=test_rdoc_markup
[ 81/902] 1985618=test_rdoc_code_object
[ 82/902] 1985618=test_time
[ 83/902] 1985618=test_gem_source_subpath_problem
[ 84/902] 1985618=test_rdoc_stats
[ 85/902] 1985618=test_gem_request_set_lockfile_parser
[ 86/902] 1985618=test_gem_commands_update_command
[ 87/902] 1985614=test_human_typo
[ 88/902] 1985614=test_enc_associate
[ 89/902] 1985614=test_interned_str
[ 90/902] 1985614=test_tree_spell_checker
[ 91/902] 1985614=newline_test
[ 92/902] 1985614=test_option
[ 93/902] 1985614=test_system
[ 94/902] 1985618=test_zsh_completion
[ 95/902] 1985618=test_gem_dependency_resolution_error
[ 96/902] 1985618=test_random_formatter
[ 97/902] 1985618=test_gem_resolver_vendor_set
[ 98/902] 1985618=test_gem_package_old
[ 99/902] 1985618=test_gem_commands_yank_command
[100/902] 1985614=test_gc_compact
[101/902] 1985618=test_pipe
[102/902] 1985618=test_rdoc_markup_hard_break
[103/902] 1985618=test_ractor
[104/902] 1985618=test_win32ole_method_event
[105/902] 1985618=test_sizeof
[106/902] 1985614=test_cgi_util
[107/902] 1985613=test_key_event_record
[108/902] 1985613=test_data
[109/902] 1985613=test_sleep
[110/902] 1985614=test_find
[111/902] 1985614=test_ractor
[112/902] 1985614=test_gem_commands_build_command
[113/902] 1985613=test_severity
[114/902] 1985613=test_integer
[115/902] 1985613=test_ifunless
[116/902] 1985613=encoding_test
[117/902] 1985613=test_grapheme_breaks
[118/902] 1985613=test_cclass
[119/902] 1985613=test_gem_commands_cert_command
[120/902] 1985614=test_foreach
[121/902] 1985614=test_gem_commands_signout_command
[122/902] 1985614=test_rand
[123/902] 1985612=test_gem_dependency_list
[124/902] 1985612=test_gem_path_support
[125/902] 1985613=test_rdoc_markdown_test
[126/902] 1985612=test_rdoc_normal_module
[127/902] 1985614=test_rdoc_markup_to_bs
[128/902] 1985614=test_config
[129/902] 1985614=test_files_sample
[130/902] 1985614=test_backtrace
[131/902] 1985612=test_json_tree
[132/902] 1985612=test_nextafter
[133/902] 1985612=test_rdoc_task
[134/902] 1985612=test_capacity
[135/902] 1985612=test_summary
[136/902] 1985612=test_utf16
[137/902] 1985612=test_rinda
[138/902] 1985612=test_gem_package_tar_writer
[139/902] 1985612=test_kill_ring
[140/902] 1985612=test_gem_bundler_version_finder
[141/902] 1985612=test_emitter
[142/902] 1985612=test_float
[143/902] 1985618=test_forwardable
[144/902] 1985618=test_pp
[145/902] 1985618=test_webauthn_listener_response
[146/902] 1985618=test_scan_args
[147/902] 1985618=test_rdoc_ri_paths
[148/902] 1985614=test_digest_extend
[149/902] 1985614=test_shellwords
[150/902] 1985618=test_delegation
[151/902] 1985614=test_omap
[152/902] 1985614=test_popen_deadlock
[153/902] 1985618=test_key_name_check
[154/902] 1985618=test_unicode_escape
[155/902] 1985618=test_irb
[156/902] 1985614=test_pkcs12
[157/902] 1985614=test_shapes
[158/902] 1985614=locals_test
[159/902] 1985613=test_convertible
[160/902] 1985612=test_array
[161/902] 1985618=test_encodings
[162/902] 1985614=test_scalar_scanner
[163/902] 1985614=test_date_time
[164/902] 1985613=test_gem_uri_formatter
[165/902] 1985614=test_weakmap
[166/902] 1985613=test_pack
[167/902] 1985613=test_ws
[168/902] 1985613=test_sprintf
[169/902] 1985618=test_sorted_set
[170/902] 1985618=test_emoji
[171/902] 1985618=test_gem_source_fetch_problem
[172/902] 1985618=test_readpartial
[173/902] 1985618=test_array_create
[174/902] 1985618=test_data_error
[175/902] 1985618=test_mdns
[176/902] 1985618=test_cp949
[177/902] 1985618=test_enumerator
[178/902] 1985618=test_condition
[179/902] 1985618=test_singleton
[180/902] 1985618=test_debug
[181/902] 1985618=test_name_error
[182/902] 1985618=test_gem_name_tuple
[183/902] 1985613=test_gem_commands_dependency_command
[184/902] 1985618=test_ractor_compatibility
[185/902] 1985613=test_wss
[186/902] 1985613=test_unconverted_fields
[187/902] 1985613=test_safe_load
[188/902] 1985613=test_date_attr
[189/902] 1985613=test_http
[190/902] 1985618=test_require_path_check
[191/902] 1985613=test_httpresponses
[192/902] 1985613=test_webauthn_listener
.Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 11 : #<TCPSocket:fd 11, AF_INET, 127.0.0.1, 44499>
.Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 11
[193/902] 1985613=test_data
[194/902] 1985613=test_function_entry
[195/902] 1985613=test_framework
[196/902] 1985613=test_parser
[197/902] 1985613=test_c_struct_builder
[198/902] 1985618=test_gem_resolver_lock_specification
[199/902] 1985618=test_gem_security_signer
[200/902] 1985618=ripper_compat_test
[201/902] 1985618=test_buffered_io
[202/902] 1985618=test_date_strptime
[203/902] 1985613=test_err_in_callback
[204/902] 1985613=test_getopts
[205/902] 1985613=test_table
[206/902] 1985613=test_prettyprint
[207/902] 1985613=test_color_printer
[208/902] 1985613=test_http_request
[209/902] 1985613=test_queue
[210/902] 1985613=test_stringchar
[211/902] 1985618=comments_test
[212/902] 1985618=test_string_processing
[213/902] 1985618=test_gb18030
[214/902] 1985618=test_normalize
[215/902] 1985618=test_win32ole_variant_m
[216/902] 1985618=test_extlibs
[217/902] 1985613=test_notimplement
[218/902] 1985613=test_key_actor_vi
[219/902] 1985613=test_rubygems
[220/902] 1985613=test_mailto
[221/902] 1985613=test_gem_commands_open_command
[222/902] 1985618=test_reqarg
[223/902] 1985613=test_instrumentation_api
[224/902] 1985613=test_compile_prism
[225/902] 1985618=test_drbssl
[226/902] 1985613=test_tempfile
[227/902] 1985613=test_bug-3571
[228/902] 1985613=test_syntax
[229/902] 1985618=test_abbrev
[230/902] 1985618=test_key_actor_emacs
[231/902] 1985618=test_lazy_enumerator
[232/902] 1985618=test_basicinstructions
[233/902] 1985618=test_mul
[234/902] 1985618=test_resource
[235/902] 1985618=test_find_executable
[236/902] 1985618=test_function
[237/902] 1985612=test_rdoc_parser
[238/902] 1985612=test_arity
[239/902] 1985612=test_trace
[240/902] 1985612=test_gem_doctor
[241/902] 1985612=test_ripper
[242/902] 1985618=test_force_quotes
[243/902] 1985618=test_ldap
[244/902] 1985618=test_x509attr
[245/902] 1985618=test_nkf
[246/902] 1985618=test_macro
[247/902] 1985618=test_gem_package
[248/902] 1985612=json_encoding_test
[249/902] 1985612=test_recorder
[250/902] 1985612=test_unicode_normalize
[251/902] 1985618=test_liberal_parsing
[252/902] 1985618=test_arith_seq_extract
[253/902] 1985618=test_win32ole_variant
[254/902] 1985618=test_change_word
[255/902] 1985618=test_hmac
[256/902] 1985618=test_pattern_key_name_check
[257/902] 1985618=test_reline_key
[258/902] 1985618=test_observer
[259/902] 1985618=test_yamlstore
[260/902] 1985618=test_gem_impossible_dependencies_error
[261/902] 1985618=test_gem_commands_cleanup_command
[262/902] 1985618=test_autoload
[263/902] 1985613=test_bug-5832
[264/902] 1985613=test_fd_setsize
[265/902] 1985613=test_numeric
[266/902] 1985613=test_raise
[267/902] 1985613=test_rdoc_rdoc
[268/902] 1985613=test_string
[269/902] 1985613=test_gem_update_suggestion
[270/902] 1985613=test_gem_commands_check_command
[271/902] 1985613=test_stringio
[272/902] 1985613=test_gem_commands_environment_command
[273/902] 1985613=test_io_buffer
[274/902] 1985613=test_gem_resolver_lock_set
[275/902] 1985613=test_dns
[276/902] 1985613=test_enumerable
[277/902] 1985613=test_beginendblock
[278/902] 1985613=json_ext_parser_test
[279/902] 1985613=test_erb_m17n
[280/902] 1985613=test_bash_completion
[281/902] 1985613=test_rdoc_i18n_text
[282/902] 1985613=test_within_pipe
[283/902] 1985613=test_singleton_function
[284/902] 1985613=test_fnmatch
[285/902] 1985613=parse_test
[286/902] 1985614=test_windows_1252
[287/902] 1985614=test_alias
[288/902] 1985614=test_rdoc_generator_darkfish
[289/902] 1985618=test_gem_request_set_lockfile_tokenizer
[290/902] 1985618=test_super
[291/902] 1985614=test_rdoc_markup_to_html_snippet
[292/902] 1985614=test_io_timeout
[293/902] 1985614=test_at_exit
[294/902] 1985614=test_rdoc_comment
[295/902] 1985614=test_https_proxy
[296/902] 1985614=test_defined
[297/902] 1985614=test_gem_dependency
[298/902] 1985614=test_comparable
[299/902] 1985614=test_autoconf
[300/902] 1985614=test_error_highlight
[301/902] 1985614=test_rdoc_parser_changelog
[302/902] 1985614=test_win32ole_variant_outarg
[303/902] 1985614=test_cgi_multipart
[304/902] 1985614=test_column_separator
[305/902] 1985614=test_files_test_2
[306/902] 1985614=test_gc
[307/902] 1985618=test_base64
[308/902] 1985618=test_file
[309/902] 1985618=dispatcher_test
[310/902] 1985618=test_eval_history
[311/902] 1985618=test_generic
[312/902] 1985618=test_init
[313/902] 1985618=test_wait
[314/902] 1985618=test_converters
[315/902] 1985618=test_workspace
[316/902] 1985618=test_egrep_cpp
[317/902] 1985618=test_debug_cmd
[318/902] 1985618=test_date_conv
[319/902] 1985618=test_append
[320/902] 1985618=test_files_ext
[321/902] 1985618=test_euc_tw
[322/902] 1985618=test_pty
[323/902] 1985618=test_case
[324/902] 1985618=test_continuation
[325/902] 1985618=test_ractor
[326/902] 1985618=test_delete
[327/902] 1985618=test_gem_safe_marshal
[328/902] 1985613=test_math
[329/902] 1985613=test_rdoc_generator_markup
[330/902] 1985613=test_gc
[331/902] 1985613=test_libs
[332/902] 1985613=test_rdoc_alias
[333/902] 1985613=test_gem_resolver_index_specification
[334/902] 1985613=test_placearg
[335/902] 1985613=test_m17n_comb
[336/902] 1985618=test_raise_no_backtrace_exception
[337/902] 1985618=test_rdoc_generator_json_index
[338/902] 1985618=test_scalar
[339/902] 1985618=test_io_buffer
[340/902] 1985618=test_files_test
[341/902] 1985618=test_gem_command_manager
[342/902] 1985618=test_webauthn_poller
[343/902] 1985618=test_did_you_mean
[344/902] 1985618=test_gem_commands_setup_command
[345/902] 1985618=test_gem_config_file
[346/902] 1985618=desugar_compiler_test
[347/902] 1985618=test_x509cert
[348/902] 1985618=test_spell_checker
[349/902] 1985618=test_config
[350/902] 1985618=test_yjit_exit_locations
[351/902] 1985618=test_rdoc_rubygems_hook
[352/902] 1985618=test_logdevice
[353/902] 1985618=test_gem_commands_push_command
[354/902] 1985618=test_thread
[355/902] 1985618=test_gem_indexer
[356/902] 1985618=test_rdoc_markup_document
[357/902] 1985618=test_udp
[358/902] 1985618=test_string
[359/902] 1985612=test_load
[360/902] 1985612=test_gem_request_set_gem_dependency_api
[361/902] 1985612=test_gem_security
[362/902] 1985612=test_literal
[363/902] 1985612=test_pkey_dh
[364/902] 1985612=test_exception
[365/902] 1985618=test_range
[366/902] 1985613=test_emoji_breaks
[367/902] 1985612=test_type
[368/902] 1985612=test_pkey
[369/902] 1985612=test_ts
[370/902] 1985612=test_gem_resolver_activation_request
[371/902] 1985612=test_yaml_tree
[372/902] 1985612=test_locale
[373/902] 1985612=test_enumerator_kw
[374/902] 1985612=test_bigdecimal_util
[375/902] 1985612=test_invalid
[376/902] 1985612=test_ractor
[377/902] 1985612=test_logperiod
[378/902] 1985612=test_argf
[379/902] 1985618=test_rdoc_text
[380/902] 1985618=heredoc_dedent_test
[381/902] 1985618=test_objectspace
[382/902] 1985612=test_ubf_async_safe
[383/902] 1985612=test_yjit
[384/902] 1985618=test_digest
[385/902] 1985618=test_win32ole_record
[386/902] 1985618=test_process
[387/902] 1985612=test_m17n
[388/902] 1985612=test_require
[389/902] 1985612=test_rdoc_generator_pot_po_entry
[390/902] 1985612=test_integer_comb
[391/902] 1985618=test_tsort
[392/902] 1985618=test_console_attr
[393/902] 1985618=test_euc_kr
[394/902] 1985618=test_ractor
[395/902] 1985618=test_require_lib
[396/902] 1985614=test_fiddle
[397/902] 1985618=test_frozen
[398/902] 1985618=test_io_wait
[399/902] 1985614=test_rdoc_rd_block_parser
[400/902] 1985614=test_kwargs
[401/902] 1985614=test_sleep
[402/902] 1985614=test_nesting_parser
[403/902] 1985618=test_set
[404/902] 1985618=test_securerandom
[405/902] 1985618=test_coderange
[406/902] 1985618=test_rdoc_i18n_locale
[407/902] 1985618=test_handle
[408/902] 1985614=test_stream
[409/902] 1985614=test_kdf
[410/902] 1985614=test_rdoc_method_attr
[411/902] 1985614=test_configuration
[412/902] 1985614=test_rendering
[413/902] 1985614=test_gem_resolver_dependency_request
[414/902] 1985614=test_gem_package_task
[415/902] 1985614=test_io
[416/902] 1985614=test_serialize_subclasses
[417/902] 1985614=test_ns_spki
[418/902] 1985614=test_gem_requirement
[419/902] 1985614=test_rdoc_parser_markdown
[420/902] 1985614=test_file_exhaustive
[421/902] 1985618=test_case_comprehensive
[422/902] 1985613=test_rdoc_class_module
[423/902] 1985613=test_hash
[424/902] 1985612=test_each
[425/902] 1985612=test_psych
[426/902] 1985612=test_x509store
[427/902] 1985612=json_common_interface_test
[428/902] 1985612=test_case_mapping
[429/902] 1985612=test_gem_spec_fetcher
[430/902] 1985612=test_gem_resolver_index_set
[431/902] 1985612=test_member
[432/902] 1985612=test_rbconfig
[433/902] 1985612=memsize_test
[434/902] 1985612=test_color
[435/902] 1985612=test_arith_seq_beg_len_step
[436/902] 1985612=ruby_api_test
[437/902] 1985612=test_profile_frames
[438/902] 1985612=test_gem_resolver_requirement_list
[439/902] 1985612=test_rdoc_markup_to_html
[440/902] 1985612=test_common
[441/902] 1985612=test_folderitem2_invokeverb
[442/902] 1985612=test_ipaddr
[443/902] 1985612=test_gem_command
[444/902] 1985612=test_optimization
[445/902] 1985612=test_variable
[446/902] 1985612=test_gem_commands_pristine_command
[447/902] 1985612=test_jaro_winkler
[448/902] 1985612=test_terminfo
[449/902] 1985612=test_gem_source_specific_file
[450/902] 1985612=test_rdoc_markup_formatter
[451/902] 1985612=test_func
[452/902] 1985613=location_test
[453/902] 1985613=test_time_tz
[454/902] 1985613=test_bug-14834
[455/902] 1985613=test_addrinfo
[456/902] 1985613=test_c_struct_entry
[457/902] 1985614=test_nofree
[458/902] 1985614=test_object
[459/902] 1985614=test_history
[460/902] 1985614=test_gem_source_installed
[461/902] 1985614=test_gem_source_vendor
[462/902] 1985614=test_gem_commands_which_command
[463/902] 1985614=test_dir_m17n
[464/902] 1985614=test_gem_request_set_lockfile
[465/902] 1985614=test_postponed_job
[466/902] 1985613=test_basicsocket
[467/902] 1985613=test_rendering
[468/902] 1985613=test_modify_expand
[469/902] 1985613=test_gem_available_set
[470/902] 1985613=test_process
[471/902] 1985613=test_default_gems
[472/902] 1985613=test_dryrun
[473/902] 1985613=test_date_strftime
[474/902] 1985614=test_iterator
[475/902] 1985614=test_string
[476/902] 1985614=test_buffering
[477/902] 1985614=pattern_test
[478/902] 1985614=test_path
[479/902] 1985614=test_rubyoptions
[480/902] 1985613=test_symbol
[481/902] 1985613=test_storage
[482/902] 1985613=test_enc_raise
[483/902] 1985613=test_euc_jp
[484/902] 1985613=test_ancdata
[485/902] 1985613=test_rdoc_encoding
[486/902] 1985613=test_recursion
[487/902] 1985613=test_gem_stream_ui
[488/902] 1985613=test_rdoc_generator_ri
[489/902] 1985613=test_class_name_check
[490/902] 1985613=test_rdoc_markdown
[491/902] 1985613=test_null
[492/902] 1985613=test_rdoc_markup_to_html_crossref
[493/902] 1985613=test_config
[494/902] 1985613=test_yamldbm
[495/902] 1985613=test_rdoc_constant
[496/902] 1985613=test_deprecate
[497/902] 1985613=test_iseq
[498/902] 1985613=test_gem_commands_lock_command
[499/902] 1985613=test_gem_resolver_git_set
[500/902] 1985613=test_ractor
[501/902] 1985613=test_ractor
[502/902] 1985613=test_lambda
[503/902] 1985613=test_read
[504/902] 1985613=test_gem_rdoc
[505/902] 1985613=test_integer
[506/902] 1985614=test_rational
[507/902] 1985614=test_trick
[508/902] 1985614=test_date_ractor
[509/902] 1985614=test_syslog
[510/902] 1985614=test_protocol
[511/902] 1985614=test_gem_ext_configure_builder
[512/902] 1985614=test_win32ole_param
[513/902] 1985614=json_fixtures_test
[514/902] 1985614=test_ssl
[515/902] 1985614=test_ole_methods
[516/902] 1985614=test_rdoc_generator_pot
[517/902] 1985614=test_gem_gem_runner
[518/902] 1985614=test_rdoc_parser_c
[519/902] 1985614=test_ractor
[520/902] 1985614=test_rdoc_extend
[521/902] 1985614=test_scheduler
[522/902] 1985614=test_marshal
[523/902] 1985614=test_regexp
[524/902] 1985613=test_rdoc_tom_doc
[525/902] 1985613=test_mkmf
[526/902] 1985613=test_rdoc_attr
[527/902] 1985613=test_merge_keys
[528/902] 1985613=test_stringscanner
[529/902] 1985613=test_cgi_core
[530/902] 1985613=test_delegate
[531/902] 1985613=test_threadgroup
[532/902] 1985613=test_parser
[533/902] 1985613=test_gem_install_update_options
[534/902] 1985613=test_verbose
[535/902] 1985613=test_addr
[536/902] 1985613=test_have_func
[537/902] 1985613=test_remote_fetch_error
[538/902] 1985613=test_boolean
[539/902] 1985613=test_helper
[540/902] 1985613=test_rdoc_markup_heading
[541/902] 1985613=test_gem
[542/902] 1985613=test_bmethod
[543/902] 1985613=test_gem_resolver_local_specification
[544/902] 1985613=test_insns_leaf
[545/902] 1985613=test_rat
[546/902] 1985613=test_parser_events
[547/902] 1985613=test_ansi_with_terminfo
[548/902] 1985613=test_rdoc_markup_include
[549/902] 1985613=test_inputs_scanner
[550/902] 1985613=test_gem_remote_fetcher
[551/902] 1985613=test_x509req
[552/902] 1985613=test_thread_fd_close
[553/902] 1985613=test_rdoc_markup_attribute_manager
[554/902] 1985613=test_flush
[555/902] 1985613=test_http
[556/902] 1985614=json_generator_test
[557/902] 1985614=test_gem_resolver_composed_set
[558/902] 1985614=test_tmpdir
[559/902] 1985614=test_vm_dump
[560/902] 1985614=test_filter
[561/902] 1985614=test_win32ole_type
[562/902] 1985614=test_transcode
[563/902] 1985613=test_koi8
[564/902] 1985613=test_dln
[565/902] 1985613=errors_test
[566/902] 1985613=test_gem_package_tar_reader_entry
[567/902] 1985614=test_thread
[568/902] 1985613=test_str2big
[569/902] 1985613=test_pkg_config
[570/902] 1985613=test_store
[571/902] 1985613=test_gem_security_policy
[572/902] 1985613=test_fips
[573/902] 1985613=test_write
[574/902] 1985613=test_row
[575/902] 1985613=test_rdoc_markup_to_joined_paragraph
[576/902] 1985613=test_propertyputref
[577/902] 1985613=test_tracepoint
[578/902] 1985613=test_gem_resolver_api_specification
[579/902] 1985613=test_rdoc_markup_to_table_of_contents
[580/902] 1985613=test_helper
[581/902] 1985613=test_internal_ivar
[582/902] 1985613=test_rdoc_cross_reference
[583/902] 1985612=test_refinement
[584/902] 1985613=test_gem_request_connection_pools
[585/902] 1985613=unescape_test
[586/902] 1985614=test_drbunix
[587/902] 1985614=test_gem_request
[588/902] 1985613=test_iso_8859
[589/902] 1985613=test_rdoc_context
[590/902] 1985614=test_gem_validator
[591/902] 1985614=test_cgi_session
[592/902] 1985614=test_open-uri
[593/902] 1985614=test_numhash
[594/902] 1985614=test_pkey_rsa
[595/902] 1985614=test_rdoc_parser_simple
[596/902] 1985614=test_x509crl
[597/902] 1985614=test_pointer
[598/902] 1985613=test_rdoc_token_stream
[599/902] 1985613=test_flags
[600/902] 1985613=test_x509ext
[601/902] 1985613=test_gem_ext_builder
[602/902] 1985613=test_gem_ext_ext_conf_builder
[603/902] 1985613=test_x509name
[604/902] 1985612=test_rdoc_single_class
[605/902] 1985612=test_bug_reporter
[606/902] 1985612=compiler_test
[607/902] 1985612=test_name_error_extension
[608/902] 1985612=test_weakref
[609/902] 1985613=test_pinned
[610/902] 1985613=test_timeout
[611/902] 1985613=test_general
[612/902] 1985613=test_path_to_class
[613/902] 1985613=test_gem_source_git
[614/902] 1985613=test_regex_casefold
[615/902] 1985612=test_unix
[616/902] 1985612=test_drbobject
[617/902] 1985612=test_settracefunc
[618/902] 1985612=test_gem_text
[619/902] 1985612=test_exit
[620/902] 1985612=test_win32ole
[621/902] 1985612=test_nil2vtempty
[622/902] 1985612=test_context
[623/902] 1985612=test_coder
[624/902] 1985612=test_symbol
[625/902] 1985612=test_method_cache
[626/902] 1985612=test_gem_ext_cargo_builder_unit
[627/902] 1985612=test_cgi_header
[628/902] 1985612=test_rdoc_markup_to_markdown
[629/902] 1985612=test_keyword
[630/902] 1985614=test_tuplebag
[631/902] 1985614=test_sprintf_comb
[632/902] 1985614=test_tcp
[633/902] 1985612=test_ruby_lex
[634/902] 1985612=test_whileuntil
[635/902] 1985612=test_tree_builder
[636/902] 1985612=test_protect
[637/902] 1985612=test_gem_commands_info_command
[638/902] 1985612=test_gem_commands_mirror
[639/902] 1985612=test_monitor
[640/902] 1985612=test_ossl
[641/902] 1985614=ractor_test
[642/902] 1985614=constant_path_node_test
[643/902] 1985614=test_bignum
[644/902] 1985614=test_data_converters
[645/902] 1985614=test_scanner_events
[646/902] 1985612=test_case
[647/902] 1985612=test_gem_request_set
[648/902] 1985614=test_syslog_logger
[649/902] 1985612=test_gem_commands_specification_command
[650/902] 1985612=test_string_memory
[651/902] 1985613=test_gem_silent_ui
[652/902] 1985613=test_abi
[653/902] 1985613=test_object
[654/902] 1985613=test_line_editor
[655/902] 1985613=test_gem_source_local
[656/902] 1985614=test_win32ole_param_event
[657/902] 1985614=test_gem_resolver_vendor_specification
[658/902] 1985614=test_gem_resolver_git_specification
[659/902] 1985612=test_load
[660/902] 1985612=test_install
[661/902] 1985614=test_nowrite
[662/902] 1985612=test_stack
[663/902] 1985613=test_thread_queue
[664/902] 1985614=test_thread_cv
[665/902] 1985614=json_generic_object_test
[666/902] 1985614=test_to_ruby
[667/902] 1985614=test_last_thread
[668/902] 1985612=test_depth_first
[669/902] 1985612=test_gem_commands_stale_command
[670/902] 1985612=test_set
[671/902] 1985614=test_econv
[672/902] 1985612=test_unicode
[673/902] 1985612=test_gem_version
[674/902] 1985612=test_eval
[675/902] 1985614=test_io_console
[676/902] 1985612=test_gem_version_option
[677/902] 1985612=test_ellipsize
[678/902] 1985612=test_c_union_entity
[679/902] 1985614=test_enum
[680/902] 1985612=test_cstr
[681/902] 1985614=test_parse
[682/902] 1985614=test_ssl_session
[683/902] 1985614=test_files_lib
[684/902] 1985614=test_rdoc_markup_verbatim
[685/902] 1985614=test_inadvertent_creation
[686/902] 1985614=test_pair
[687/902] 1985614=test_object_references
[688/902] 1985614=json_string_matching_test
[689/902] 1985614=test_gem_resolver_best_set
[690/902] 1985614=test_dir
[691/902] 1985614=test_pkey_dsa
[692/902] 1985614=test_mutex_m
[693/902] 1985614=test_rdoc_parser_ruby
[694/902] 1985614=test_httpresponse
[695/902] 1985614=test_alias_and_anchor
[696/902] 1985614=test_const
[697/902] 1985614=test_class
[698/902] 1985613=test_enc_str_buf_cat
[699/902] 1985613=test_encoding
[700/902] 1985613=test_ssl
[701/902] 1985613=test_acceptable
[702/902] 1985613=test_marshalable
[703/902] 1985613=test_random
[704/902] 1985613=test_io_wait_uncommon
[705/902] 1985613=test_lexer
[706/902] 1985613=test_sockopt
[707/902] 1985613=test_rb_str_dup
[708/902] 1985613=test_module
[709/902] 1985613=test_encoding
[710/902] 1985612=test_rdoc_markup_to_ansi
[711/902] 1985612=test_gem_package_tar_reader
[712/902] 1985612=test_document
[713/902] 1985612=test_rdoc_ri_driver
[714/902] 1985613=test_httpheader
[715/902] 1985613=test_constant
[716/902] 1985612=test_gem_commands_query_command
[717/902] 1985613=test_too_many_dummy_encodings
[718/902] 1985613=test_gem_resolver_conflict
[719/902] 1985613=test_have_macro
[720/902] 1985613=test_pathname
[721/902] 1985613=test_primitive
[722/902] 1985613=test_coverage
[723/902] 1985613=test_rubyvm
[724/902] 1985612=test_ansi_without_terminfo
[725/902] 1985613=test_rdoc_rd_inline_parser
[726/902] 1985613=test_gem_resolver
[727/902] 1985612=test_bigdecimal
[728/902] 1985613=test_gem_uri
[729/902] 1985613=test_erb
[730/902] 1985613=test_gem_source_lock
[731/902] 1985613=test_gem_commands_list_command
[732/902] 1985613=test_digest
[733/902] 1985613=version_test
[734/902] 1985613=test_rewind
[735/902] 1985613=test_closure
[736/902] 1985613=test_sexp
[737/902] 1985613=test_object_create_start
[738/902] 1985613=test_enumerator
[739/902] 1985613=test_nonblock
[740/902] 1985613=test_strip
[741/902] 1985613=test_ocsp
[742/902] 1985612=test_rdoc_markup_paragraph
[743/902] 1985613=test_struct
[744/902] 1985613=test_timeout
[745/902] 1985612=test_case_options
[746/902] 1985612=test_gem_commands_fetch_command
[747/902] 1985612=test_rdoc_any_method
[748/902] 1985613=test_complexrational
[749/902] 1985613=test_win32ole_event
[750/902] 1985613=test_env
[751/902] 1985613=test_bigmath
[752/902] 1985613=test_mutex
[753/902] 1985613=test_big5
[754/902] 1985613=test_my_integer
[755/902] 1985613=test_io_m17n
[756/902] 1985612=test_date_compat
[757/902] 1985612=test_bundled_ca
[758/902] 1985612=test_gem_commands_sources_command
[759/902] 1985612=test_call
[760/902] 1985612=test_rdoc_options
[761/902] 1985613=test_fixnum
[762/902] 1985613=test_signal
[763/902] 1985613=test_rdoc_markup_indented_paragraph
[764/902] 1985613=test_usrmarshal
[765/902] 1985613=test_yaml
[766/902] 1985613=test_big2str
[767/902] 1985613=test_cmd
[768/902] 1985612=test_qsort
[769/902] 1985612=test_acl
[770/902] 1985612=test_rdoc_include
[771/902] 1985612=test_uncorrectable_name_check
[772/902] 1985612=json_addition_test
[773/902] 1985612=test_gem_commands_search_command
[774/902] 1985612=test_cgi_modruby
[775/902] 1985612=test_gem_stub_specification
[776/902] 1985612=test_gem_commands_signin_command
[777/902] 1985612=test_cmethod
[778/902] 1985612=test_logger
[779/902] 1985613=test_cgi_tag_helper
[780/902] 1985613=test_gem_resolver_api_set
[781/902] 1985612=test_passing_block
[782/902] 1985612=test_stat
[783/902] 1985612=test_gem_commands_help_command
[784/902] 1985612=test_import
[785/902] 1985613=test_frozen_error
[786/902] 1985613=test_read_write
[787/902] 1985613=test_printf
[788/902] 1985613=test_gem_dependency_installer
[789/902] 1985613=test_update
[790/902] 1985613=test_have_library
[791/902] 1985613=test_word
[792/902] 1985613=test_variable_name_check
[793/902] 1985613=test_gem_security_trust_dir
[794/902] 1985613=test_numeric
[795/902] 1985613=test_gem_commands_exec_command
[796/902] 1985613=test_time
[797/902] 1985613=test_nomethod_error
[798/902] 1985613=test_pattern_matching
[799/902] 1985613=test_engine
[800/902] 1985613=test_len
[801/902] 1985613=test_clone
[802/902] 1985613=test_key_error
[803/902] 1985613=magic_comment_test
[804/902] 1985613=test_general
[805/902] 1985613=test_dot_dot
[806/902] 1985613=test_objspace
[807/902] 1985612=test_fstring
[808/902] 1985612=test_cparser
[809/902] 1985612=test_rdoc_markup_raw
[810/902] 1985612=test_dup
[811/902] 1985612=test_require
[812/902] 1985612=test_rdoc_markup_to_tt_only
[813/902] 1985612=test_provider
[814/902] 1985612=test_file
[815/902] 1985612=test_pkcs7
[816/902] 1985612=bom_test
[817/902] 1985612=test_yield
[818/902] 1985612=test_files_test_1
[819/902] 1985612=test_typeddata
[820/902] 1985612=test_history
[821/902] 1985612=test_memory_view
[822/902] 1985612=test_rdoc_rd
[823/902] 1985612=test_config
[824/902] 1985612=test_win32ole_type_event
[825/902] 1985612=test_rdoc_rd_inline
[826/902] 1985612=test_new
[827/902] 1985612=test_cipher
[828/902] 1985612=test_drb
[829/902] 1985612=test_patterns
[830/902] 1985612=test_erb_command
[831/902] 1985612=test_bigzero
[832/902] 1985612=test_rdoc_top_level
[833/902] 1985612=test_iseq_load
[834/902] 1985612=test_complex2
[835/902] 1985612=test_class2name
[836/902] 1985612=test_windows_1251
[837/902] 1985612=test_class
[838/902] 1985612=test_metaclass
[839/902] 1985612=test_quote_char_nil
[840/902] 1985612=test_kconv
[841/902] 1985612=test_eval
[842/902] 1985612=fuzzer_test
[843/902] 1985612=test_pack
[844/902] 1985612=test_struct
[845/902] 1985612=test_gem_commands_install_command
[846/902] 1985612=test_ast
[847/902] 1985614=test_cgi_cookie
[848/902] 1985614=test_gem_commands_owner_command
[849/902] 1985614=test_ostruct
[850/902] 1985614=test_benchmark
[851/902] 1985614=test_project_sanity
[852/902] 1985614=test_gem_package_tar_header
[853/902] 1985614=test_date_arith
[854/902] 1985614=test_rational2
[855/902] 1985614=test_arithmetic_sequence
[856/902] 1985614=test_gem_source
[857/902] 1985614=test_signedness
[858/902] 1985614=test_ensured
[859/902] 1985614=test_gem_util
[860/902] 1985614=test_deprecated
[861/902] 1985614=test_div
[862/902] 1985614=test_ractor
[863/902] 1985614=test_completion
[864/902] 1985614=test_rdoc_context_section
[865/902] 1985614=test_skip_lines
[866/902] 1985614=test_rdoc_markup_attributes
[867/902] 1985614=test_https
[868/902] 1985614=test_gem_commands_outdated_command
[869/902] 1985614=test_shift_jis
[870/902] 1985614=test_evaluation
[871/902] 1985614=test_not
[872/902] 1985614=json_parser_test
[873/902] 1985614=test_emitter
[874/902] 1985614=test_assembler
[875/902] 1985614=test_win32ole_method
[876/902] 1985614=test_undef
[877/902] 1985614=test_address_resolve
[878/902] 1985614=test_read
[879/902] 1985614=test_rdoc_require
[880/902] 1985614=test_iter_break
[881/902] 1985614=test_memory_view
[882/902] 1985614=test_duplicate
[883/902] 1985614=test_arity
[884/902] 1985614=test_flip
[885/902] 1985614=test_gem_resolver_installed_specification
[886/902] 1985614=test_num2int
[887/902] 1985614=test_convert
[888/902] 1985614=test_rdoc_generator_pot_po
[889/902] 1985614=test_input_method
[890/902] 1985614=test_switch_hitter
[891/902] 1985614=test_hash
[892/902] 1985614=test_gem_installer
[893/902] 1985614=test_weakkeymap
[894/902] 1985614=test_gem_ext_cmake_builder
[895/902] 1985614=test_gem_resolver_specification
[896/902] 1985614=test_win32ole_typelib
[897/902] 1985614=test_gem_unsatisfiable_dependency_error
[898/902] 1985614=test_external_new
[899/902] 1985614=test_header
[900/902] 1985614=test_rdoc_normal_class
[901/902] 1985614=test_hash_create
[902/902] 1985614=test_optparse
Finished tests in 11054.003451s, 2.4196 tests/s, 857.2120 assertions/s.
26746 tests, 9475624 assertions, 0 failures, 0 errors, 188 skips
ruby -v: ruby 3.3.0dev (2023-10-26T19:47:01Z master 719b40bdf6) [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 -fPIC
XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-gc-asserts/include -I/tmp/ruby/src/trunk-gc-asserts -I/tmp/ruby/src/trunk-gc-asserts/prism -I/tmp/ruby/src/trunk-gc-asserts/enc/unicode/15.0.0
CPPFLAGS =
DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong
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-gc-asserts/yjit/target/release/' /tmp/ruby/src/trunk-gc-asserts/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-gc-asserts'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for '/tmp/ruby/src/trunk-gc-asserts/enc/trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/debug-1.8.0/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/racc-1.7.1/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.1/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts/.bundle/gems/rbs-3.2.2/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Entering directory '/tmp/ruby/build/trunk-gc-asserts'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-gc-asserts'
$ /tmp/ruby/build/trunk-gc-asserts/miniruby -I/tmp/ruby/src/trunk-gc-asserts/lib /tmp/ruby/src/trunk-gc-asserts/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-gc-asserts --extout=.ext -- /tmp/ruby/src/trunk-gc-asserts/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-gc-asserts/spec/default.mspec --error-output stderr --debug
ruby 3.3.0dev (2023-10-26T19:47:01Z master 719b40bdf6) [x86_64-linux]
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 .........................................................................
3431 .........................................................................
3504 .........................................................................
3577 .........................................................................
3650 .................................................................
Finished in 785.984938 seconds
3715 files, 32233 examples, 139183 expectations, 0 failures, 0 errors, 0 tagged
$$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j4'" exit with 0.