# Logfile created on 2024-02-23 03:47:12 +0000 by logger.rb/v1.5.3 #<BuildRuby:0x0000fffe03fffdc8 @REPOSITORY="https://github.com/ruby/ruby.git", @REPOSITORY_TYPE=:git, @git_branch=nil, @git_worktree=nil, @svn_revision=nil, @SRC_DIR="/home/opc/ruby/src", @BUILD_DIR="/home/opc/ruby/build", @INSTALL_DIR="/home/opc/ruby/install", @TARGET_NAME="master", @TARGET_SRC_DIR="/home/opc/ruby/src/master", @TARGET_BUILD_DIR="/home/opc/ruby/build/master", @TARGET_INSTALL_DIR="/home/opc/ruby/install/master", @configure_opts=["--disable-dtrace --disable-yjit"], @build_opts="-j3", @btest_opts="-j3", @test_opts="TESTS='-j3'", @spec_opts="-j", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=10800, @logfile="/home/opc/ruby/logs/brlog.master.20240223-034712", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x0000fffe0404e928 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x0000fffe0404e720 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0000fffe03f007d8 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/opc/ruby/logs/brlog.master.20240223-034712", @dev=#<File:/home/opc/ruby/logs/brlog.master.20240223-034712>, @binmode=false, @mon_data=#<Monitor:0x0000fffe0404e338>, @mon_data_owner_object_id=860>>> $$$[beg] make update-unicode -j3 make: Nothing to be done for 'update-unicode'. $$$[end] "make update-unicode -j3" exit with 0. $$$[beg] make update-download -j3 tool/config.guess already exists tool/config.sub already exists Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622 Update debug to 2d602636d99114d55a32fedd652c9c704446a749 Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision - echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision - echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision - /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision unchanged Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50 echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision - /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision unchanged $$$[end] "make update-download -j3" exit with 0. $$$[beg] make update-rubyspec -j3 make: Nothing to be done for 'update-rubyspec'. $$$[end] "make update-rubyspec -j3" exit with 0. $$$[beg] make update-src -j3 From https://github.com/ruby/ruby 548151d..a154ea0 master -> origin/master Updating 548151d..a154ea0 Fast-forward common.mk | 37 ++++ lib/prism/node_ext.rb | 14 -- lib/prism/prism.gemspec | 2 + prism/config.yml | 7 + prism/defines.h | 12 ++ prism/diagnostic.c | 2 + prism/diagnostic.h | 2 + prism/extension.c | 29 +++ prism/extension.h | 6 +- prism/prism.c | 114 ++++++++++-- prism/prism.h | 2 + prism/templates/ext/prism/api_node.c.erb | 45 +++-- prism/templates/include/prism/ast.h.erb | 3 + prism/templates/lib/prism/dot_visitor.rb.erb | 2 +- prism/templates/lib/prism/dsl.rb.erb | 3 +- prism/templates/lib/prism/node.rb.erb | 2 +- prism/templates/lib/prism/serialize.rb.erb | 19 ++ prism/templates/src/node.c.erb | 49 +++-- prism/templates/src/prettyprint.c.erb | 32 ++++ prism/templates/src/serialize.c.erb | 16 +- prism/templates/template.rb | 34 ++++ prism/util/pm_buffer.c | 9 + prism/util/pm_buffer.h | 8 + prism/util/pm_integer.c | 176 ++++++++++++++++++ prism/util/pm_integer.h | 104 +++++++++++ prism_compile.c | 104 ++++++----- test/prism/errors_test.rb | 8 +- test/prism/integer_parse_test.rb | 37 ++++ test/prism/snapshots/alias.txt | 3 +- test/prism/snapshots/arithmetic.txt | 9 +- test/prism/snapshots/arrays.txt | 120 ++++++++----- test/prism/snapshots/blocks.txt | 18 +- test/prism/snapshots/break.txt | 57 ++++-- test/prism/snapshots/case.txt | 45 +++-- test/prism/snapshots/classes.txt | 21 ++- test/prism/snapshots/command_method_call.txt | 114 ++++++++---- test/prism/snapshots/constants.txt | 15 +- test/prism/snapshots/dash_heredocs.txt | 6 +- test/prism/snapshots/defined.txt | 12 +- test/prism/snapshots/emoji_method_calls.txt | 3 +- test/prism/snapshots/endless_methods.txt | 12 +- .../snapshots/endless_range_in_conditional.txt | 12 +- test/prism/snapshots/for.txt | 36 ++-- test/prism/snapshots/hashes.txt | 9 +- test/prism/snapshots/heredocs_nested.txt | 3 +- test/prism/snapshots/if.txt | 24 ++- test/prism/snapshots/integer_operations.txt | 198 ++++++++++++++------- test/prism/snapshots/lambda.txt | 3 +- test/prism/snapshots/method_calls.txt | 51 ++++-- test/prism/snapshots/methods.txt | 87 ++++++--- test/prism/snapshots/modules.txt | 9 +- test/prism/snapshots/next.txt | 51 ++++-- test/prism/snapshots/nils.txt | 6 +- test/prism/snapshots/numbers.txt | 92 +++++++--- test/prism/snapshots/patterns.txt | 108 +++++++---- test/prism/snapshots/procs.txt | 9 +- .../prism/snapshots/range_begin_open_exclusive.txt | 3 +- .../prism/snapshots/range_begin_open_inclusive.txt | 3 +- test/prism/snapshots/range_end_open_exclusive.txt | 3 +- test/prism/snapshots/range_end_open_inclusive.txt | 3 +- test/prism/snapshots/ranges.txt | 123 ++++++++----- test/prism/snapshots/regex.txt | 3 +- test/prism/snapshots/repeat_parameters.txt | 12 +- test/prism/snapshots/rescue.txt | 12 +- test/prism/snapshots/return.txt | 51 ++++-- test/prism/snapshots/seattlerb/BEGIN.txt | 3 +- .../snapshots/seattlerb/TestRubyParserShared.txt | 6 +- .../prism/snapshots/seattlerb/aref_args_assocs.txt | 6 +- .../snapshots/seattlerb/aref_args_lit_assocs.txt | 9 +- test/prism/snapshots/seattlerb/args_kw_block.txt | 3 +- .../snapshots/seattlerb/array_line_breaks.txt | 3 +- test/prism/snapshots/seattlerb/assoc_label.txt | 3 +- .../snapshots/seattlerb/attr_asgn_colon_id.txt | 3 +- .../snapshots/seattlerb/attrasgn_array_arg.txt | 9 +- .../snapshots/seattlerb/attrasgn_array_lhs.txt | 12 +- .../seattlerb/attrasgn_primary_dot_constant.txt | 3 +- test/prism/snapshots/seattlerb/bang_eq.txt | 6 +- test/prism/snapshots/seattlerb/bdot2.txt | 3 +- test/prism/snapshots/seattlerb/bdot3.txt | 3 +- .../seattlerb/begin_rescue_else_ensure_bodies.txt | 12 +- .../seattlerb/block_arg_opt_arg_block.txt | 3 +- .../snapshots/seattlerb/block_arg_opt_splat.txt | 3 +- .../block_arg_opt_splat_arg_block_omfg.txt | 3 +- .../snapshots/seattlerb/block_arg_optional.txt | 3 +- test/prism/snapshots/seattlerb/block_args_opt1.txt | 3 +- test/prism/snapshots/seattlerb/block_args_opt2.txt | 6 +- .../snapshots/seattlerb/block_args_opt2_2.txt | 6 +- test/prism/snapshots/seattlerb/block_args_opt3.txt | 6 +- test/prism/snapshots/seattlerb/block_kw.txt | 3 +- test/prism/snapshots/seattlerb/block_opt_arg.txt | 3 +- test/prism/snapshots/seattlerb/block_opt_splat.txt | 3 +- .../seattlerb/block_opt_splat_arg_block_omfg.txt | 3 +- test/prism/snapshots/seattlerb/bug202.txt | 6 +- .../seattlerb/bug_call_arglist_parens.txt | 18 +- test/prism/snapshots/seattlerb/call_and.txt | 6 +- test/prism/snapshots/seattlerb/call_arg_assoc.txt | 9 +- .../snapshots/seattlerb/call_arg_assoc_kwsplat.txt | 9 +- .../prism/snapshots/seattlerb/call_arg_kwsplat.txt | 3 +- .../snapshots/seattlerb/call_args_assoc_quoted.txt | 9 +- .../seattlerb/call_args_assoc_trailing_comma.txt | 9 +- .../snapshots/seattlerb/call_args_command.txt | 3 +- test/prism/snapshots/seattlerb/call_array_arg.txt | 3 +- .../seattlerb/call_array_lit_inline_hash.txt | 3 +- test/prism/snapshots/seattlerb/call_assoc.txt | 6 +- test/prism/snapshots/seattlerb/call_assoc_new.txt | 3 +- .../seattlerb/call_assoc_new_if_multiline.txt | 6 +- .../seattlerb/call_assoc_trailing_comma.txt | 6 +- .../snapshots/seattlerb/call_bang_command_call.txt | 3 +- .../snapshots/seattlerb/call_bang_squiggle.txt | 6 +- test/prism/snapshots/seattlerb/call_carat.txt | 6 +- .../snapshots/seattlerb/call_colon_parens.txt | 3 +- test/prism/snapshots/seattlerb/call_div.txt | 6 +- test/prism/snapshots/seattlerb/call_dot_parens.txt | 3 +- test/prism/snapshots/seattlerb/call_eq3.txt | 6 +- test/prism/snapshots/seattlerb/call_gt.txt | 6 +- test/prism/snapshots/seattlerb/call_kwsplat.txt | 3 +- test/prism/snapshots/seattlerb/call_lt.txt | 6 +- test/prism/snapshots/seattlerb/call_lte.txt | 6 +- test/prism/snapshots/seattlerb/call_not.txt | 3 +- test/prism/snapshots/seattlerb/call_pipe.txt | 6 +- test/prism/snapshots/seattlerb/call_rshift.txt | 6 +- .../snapshots/seattlerb/call_self_brackets.txt | 3 +- test/prism/snapshots/seattlerb/call_spaceship.txt | 6 +- .../seattlerb/call_stabby_do_end_with_block.txt | 6 +- .../seattlerb/call_stabby_with_braces_block.txt | 6 +- test/prism/snapshots/seattlerb/call_star.txt | 6 +- test/prism/snapshots/seattlerb/call_star2.txt | 6 +- .../snapshots/seattlerb/call_trailing_comma.txt | 3 +- test/prism/snapshots/seattlerb/call_unary_bang.txt | 3 +- test/prism/snapshots/seattlerb/case_in.txt | 18 +- test/prism/snapshots/seattlerb/case_in_67.txt | 3 +- .../seattlerb/case_in_hash_pat_paren_assign.txt | 3 +- .../prism/snapshots/seattlerb/cond_unary_minus.txt | 3 +- .../snapshots/seattlerb/const_2_op_asgn_or2.txt | 3 +- .../snapshots/seattlerb/const_3_op_asgn_or.txt | 3 +- .../snapshots/seattlerb/const_op_asgn_and1.txt | 3 +- .../snapshots/seattlerb/const_op_asgn_and2.txt | 3 +- .../prism/snapshots/seattlerb/const_op_asgn_or.txt | 3 +- .../snapshots/seattlerb/defined_eh_parens.txt | 3 +- .../snapshots/seattlerb/defn_endless_command.txt | 3 +- .../seattlerb/defn_endless_command_rescue.txt | 6 +- .../prism/snapshots/seattlerb/defn_kwarg_kwarg.txt | 6 +- .../snapshots/seattlerb/defn_kwarg_kwsplat.txt | 3 +- .../seattlerb/defn_kwarg_kwsplat_anon.txt | 3 +- .../snapshots/seattlerb/defn_kwarg_no_parens.txt | 3 +- test/prism/snapshots/seattlerb/defn_kwarg_val.txt | 3 +- .../snapshots/seattlerb/defn_oneliner_eq2.txt | 3 +- .../snapshots/seattlerb/defn_opt_splat_arg.txt | 3 +- .../snapshots/seattlerb/defs_endless_command.txt | 3 +- .../seattlerb/defs_endless_command_rescue.txt | 6 +- test/prism/snapshots/seattlerb/defs_kwarg.txt | 3 +- .../snapshots/seattlerb/defs_oneliner_eq2.txt | 3 +- .../seattlerb/difficult1_line_numbers.txt | 42 +++-- .../seattlerb/difficult1_line_numbers2.txt | 6 +- test/prism/snapshots/seattlerb/difficult2_.txt | 9 +- .../seattlerb/difficult4__leading_dots2.txt | 6 +- test/prism/snapshots/seattlerb/difficult6__7.txt | 3 +- test/prism/snapshots/seattlerb/difficult6__8.txt | 3 +- test/prism/snapshots/seattlerb/do_bug.txt | 3 +- .../snapshots/seattlerb/eq_begin_line_numbers.txt | 6 +- ...eq_begin_why_wont_people_use_their_spacebar.txt | 3 +- test/prism/snapshots/seattlerb/f_kw.txt | 3 +- .../snapshots/seattlerb/float_with_if_modifier.txt | 1 + test/prism/snapshots/seattlerb/heredoc_lineno.txt | 3 +- test/prism/snapshots/seattlerb/heredoc_nested.txt | 3 +- .../seattlerb/heredoc_squiggly_interp.txt | 3 +- test/prism/snapshots/seattlerb/if_elsif.txt | 6 +- .../seattlerb/integer_with_if_modifier.txt | 3 +- .../interpolated_symbol_array_line_breaks.txt | 3 +- .../interpolated_word_array_line_breaks.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_10_1.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_10_2.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_11_1.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_11_2.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_6.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_7_1.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_7_2.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_8_1.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_8_2.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_9_1.txt | 3 +- test/prism/snapshots/seattlerb/iter_args_9_2.txt | 3 +- test/prism/snapshots/seattlerb/iter_kwarg.txt | 3 +- .../snapshots/seattlerb/iter_kwarg_kwsplat.txt | 3 +- .../snapshots/seattlerb/lasgn_arg_rescue_arg.txt | 6 +- .../seattlerb/lasgn_call_bracket_rescue_arg.txt | 6 +- .../seattlerb/lasgn_call_nobracket_rescue_arg.txt | 6 +- test/prism/snapshots/seattlerb/lasgn_command.txt | 3 +- test/prism/snapshots/seattlerb/lasgn_env.txt | 3 +- test/prism/snapshots/seattlerb/lasgn_ivar_env.txt | 3 +- .../seattlerb/lasgn_lasgn_command_call.txt | 3 +- test/prism/snapshots/seattlerb/masgn_colon2.txt | 6 +- test/prism/snapshots/seattlerb/masgn_colon3.txt | 6 +- .../snapshots/seattlerb/masgn_command_call.txt | 3 +- test/prism/snapshots/seattlerb/masgn_lhs_splat.txt | 9 +- test/prism/snapshots/seattlerb/masgn_star.txt | 3 +- .../seattlerb/method_call_assoc_trailing_comma.txt | 6 +- .../seattlerb/method_call_trailing_comma.txt | 3 +- test/prism/snapshots/seattlerb/mlhs_rescue.txt | 3 +- .../non_interpolated_symbol_array_line_breaks.txt | 3 +- .../non_interpolated_word_array_line_breaks.txt | 3 +- .../snapshots/seattlerb/op_asgn_command_call.txt | 3 +- .../seattlerb/op_asgn_dot_ident_command_call.txt | 3 +- .../seattlerb/op_asgn_index_command_call.txt | 6 +- .../op_asgn_primary_colon_identifier1.txt | 3 +- .../op_asgn_val_dot_ident_command_call.txt | 3 +- .../prism/snapshots/seattlerb/parse_line_block.txt | 3 +- .../seattlerb/parse_line_defn_complex.txt | 3 +- test/prism/snapshots/seattlerb/parse_line_dot2.txt | 6 +- .../snapshots/seattlerb/parse_line_dot2_open.txt | 3 +- test/prism/snapshots/seattlerb/parse_line_dot3.txt | 6 +- .../snapshots/seattlerb/parse_line_dot3_open.txt | 3 +- .../snapshots/seattlerb/parse_line_hash_lit.txt | 3 +- .../seattlerb/parse_line_multiline_str.txt | 3 +- .../parse_line_multiline_str_literal_n.txt | 3 +- .../snapshots/seattlerb/parse_line_return.txt | 3 +- .../seattlerb/parse_opt_call_args_assocs_comma.txt | 9 +- .../seattlerb/parse_opt_call_args_lit_comma.txt | 6 +- .../snapshots/seattlerb/parse_pattern_019.txt | 9 +- .../snapshots/seattlerb/parse_pattern_051.txt | 15 +- .../snapshots/seattlerb/parse_pattern_058.txt | 3 +- .../snapshots/seattlerb/parse_pattern_058_2.txt | 3 +- .../snapshots/seattlerb/parse_pattern_069.txt | 6 +- .../snapshots/seattlerb/parse_pattern_076.txt | 6 +- test/prism/snapshots/seattlerb/qsymbols_interp.txt | 6 +- .../snapshots/seattlerb/return_call_assocs.txt | 27 ++- test/prism/snapshots/seattlerb/rhs_asgn.txt | 3 +- test/prism/snapshots/seattlerb/ruby21_numbers.txt | 9 +- test/prism/snapshots/seattlerb/safe_attrasgn.txt | 3 +- .../snapshots/seattlerb/safe_attrasgn_constant.txt | 3 +- .../snapshots/seattlerb/safe_call_operator.txt | 3 +- test/prism/snapshots/seattlerb/safe_calls.txt | 3 +- test/prism/snapshots/seattlerb/safe_op_asgn.txt | 3 +- .../stabby_arg_opt_splat_arg_block_omfg.txt | 3 +- .../stabby_block_iter_call_no_target_with_arg.txt | 3 +- test/prism/snapshots/seattlerb/stabby_block_kw.txt | 3 +- .../seattlerb/str_newline_hash_line_number.txt | 3 +- .../snapshots/seattlerb/str_pct_nested_nested.txt | 3 +- test/prism/snapshots/seattlerb/super_arg.txt | 3 +- test/prism/snapshots/seattlerb/thingy.txt | 6 +- test/prism/snapshots/seattlerb/uminus_float.txt | 1 + test/prism/snapshots/seattlerb/utf8_bom.txt | 3 +- test/prism/snapshots/seattlerb/words_interp.txt | 3 +- test/prism/snapshots/seattlerb/yield_arg.txt | 3 +- .../snapshots/seattlerb/yield_call_assocs.txt | 27 ++- test/prism/snapshots/super.txt | 30 ++-- test/prism/snapshots/symbols.txt | 22 ++- test/prism/snapshots/ternary_operator.txt | 6 +- test/prism/snapshots/tilde_heredocs.txt | 21 ++- test/prism/snapshots/undef.txt | 3 +- test/prism/snapshots/unless.txt | 12 +- .../unparser/corpus/literal/assignment.txt | 120 ++++++++----- .../snapshots/unparser/corpus/literal/block.txt | 3 +- .../snapshots/unparser/corpus/literal/case.txt | 3 +- .../snapshots/unparser/corpus/literal/control.txt | 33 ++-- .../snapshots/unparser/corpus/literal/def.txt | 3 +- .../snapshots/unparser/corpus/literal/defined.txt | 6 +- .../snapshots/unparser/corpus/literal/defs.txt | 3 +- .../snapshots/unparser/corpus/literal/dstr.txt | 3 +- .../snapshots/unparser/corpus/literal/flipflop.txt | 12 +- .../prism/snapshots/unparser/corpus/literal/if.txt | 24 ++- .../snapshots/unparser/corpus/literal/literal.txt | 105 +++++++---- .../snapshots/unparser/corpus/literal/opasgn.txt | 60 ++++--- .../snapshots/unparser/corpus/literal/pattern.txt | 51 ++++-- .../snapshots/unparser/corpus/literal/range.txt | 18 +- .../snapshots/unparser/corpus/literal/send.txt | 27 ++- .../snapshots/unparser/corpus/literal/since/27.txt | 3 +- .../snapshots/unparser/corpus/literal/since/30.txt | 15 +- .../snapshots/unparser/corpus/literal/unary.txt | 9 +- .../snapshots/unparser/corpus/literal/while.txt | 6 +- .../snapshots/unparser/corpus/semantic/literal.txt | 15 +- .../snapshots/unparser/corpus/semantic/send.txt | 3 +- test/prism/snapshots/until.txt | 6 +- test/prism/snapshots/variables.txt | 87 ++++++--- test/prism/snapshots/while.txt | 6 +- test/prism/snapshots/whitequark/and_asgn.txt | 12 +- test/prism/snapshots/whitequark/args.txt | 36 ++-- .../snapshots/whitequark/args_args_assocs.txt | 6 +- .../whitequark/args_args_assocs_comma.txt | 3 +- test/prism/snapshots/whitequark/args_assocs.txt | 18 +- .../snapshots/whitequark/args_assocs_comma.txt | 3 +- .../snapshots/whitequark/args_assocs_legacy.txt | 18 +- test/prism/snapshots/whitequark/array_assocs.txt | 15 +- test/prism/snapshots/whitequark/array_plain.txt | 6 +- test/prism/snapshots/whitequark/array_splat.txt | 9 +- test/prism/snapshots/whitequark/asgn_mrhs.txt | 3 +- test/prism/snapshots/whitequark/begin_cmdarg.txt | 6 +- .../whitequark/beginless_erange_after_newline.txt | 3 +- .../whitequark/beginless_irange_after_newline.txt | 3 +- .../prism/snapshots/whitequark/beginless_range.txt | 6 +- test/prism/snapshots/whitequark/blockargs.txt | 36 ++-- test/prism/snapshots/whitequark/bug_447.txt | 3 +- test/prism/snapshots/whitequark/bug_452.txt | 3 +- test/prism/snapshots/whitequark/bug_466.txt | 6 +- test/prism/snapshots/whitequark/bug_481.txt | 3 +- .../snapshots/whitequark/bug_interp_single.txt | 6 +- test/prism/snapshots/whitequark/casgn_scoped.txt | 3 +- test/prism/snapshots/whitequark/casgn_toplevel.txt | 3 +- test/prism/snapshots/whitequark/casgn_unscoped.txt | 3 +- test/prism/snapshots/whitequark/complex.txt | 8 +- test/prism/snapshots/whitequark/const_op_asgn.txt | 15 +- test/prism/snapshots/whitequark/cvasgn.txt | 3 +- test/prism/snapshots/whitequark/endless_method.txt | 12 +- .../whitequark/endless_method_with_rescue_mod.txt | 12 +- .../whitequark/endless_method_without_args.txt | 12 +- test/prism/snapshots/whitequark/float.txt | 2 + .../whitequark/forward_arg_with_open_args.txt | 9 +- test/prism/snapshots/whitequark/gvasgn.txt | 3 +- .../prism/snapshots/whitequark/hash_hashrocket.txt | 12 +- test/prism/snapshots/whitequark/hash_kwsplat.txt | 3 +- test/prism/snapshots/whitequark/hash_label.txt | 3 +- test/prism/snapshots/whitequark/hash_label_end.txt | 9 +- test/prism/snapshots/whitequark/if_elsif.txt | 6 +- test/prism/snapshots/whitequark/int.txt | 9 +- test/prism/snapshots/whitequark/ivasgn.txt | 3 +- test/prism/snapshots/whitequark/kwoptarg.txt | 3 +- .../whitequark/lparenarg_after_lvar__since_25.txt | 2 + test/prism/snapshots/whitequark/lvasgn.txt | 3 +- test/prism/snapshots/whitequark/masgn.txt | 18 +- test/prism/snapshots/whitequark/masgn_attr.txt | 6 +- .../whitequark/multiple_pattern_matches.txt | 12 +- .../whitequark/newline_in_hash_argument.txt | 12 +- .../whitequark/non_lvar_injecting_match.txt | 3 +- test/prism/snapshots/whitequark/op_asgn.txt | 9 +- test/prism/snapshots/whitequark/op_asgn_index.txt | 9 +- .../snapshots/whitequark/op_asgn_index_cmd.txt | 6 +- test/prism/snapshots/whitequark/optarg.txt | 9 +- test/prism/snapshots/whitequark/or_asgn.txt | 12 +- .../pattern_matching__FILE__LINE_literals.txt | 3 +- .../whitequark/pattern_matching_blank_else.txt | 9 +- .../snapshots/whitequark/pattern_matching_else.txt | 12 +- .../whitequark/pattern_matching_single_line.txt | 6 +- ...single_line_allowed_omission_of_parentheses.txt | 18 +- test/prism/snapshots/whitequark/postexe.txt | 3 +- test/prism/snapshots/whitequark/preexe.txt | 3 +- .../prism/snapshots/whitequark/range_exclusive.txt | 6 +- .../prism/snapshots/whitequark/range_inclusive.txt | 6 +- test/prism/snapshots/whitequark/rational.txt | 4 +- .../snapshots/whitequark/rescue_mod_masgn.txt | 6 +- test/prism/snapshots/whitequark/ruby_bug_10279.txt | 3 +- test/prism/snapshots/whitequark/ruby_bug_10653.txt | 6 +- test/prism/snapshots/whitequark/ruby_bug_11380.txt | 3 +- .../snapshots/whitequark/ruby_bug_11873_a.txt | 24 ++- test/prism/snapshots/whitequark/ruby_bug_12073.txt | 6 +- test/prism/snapshots/whitequark/ruby_bug_12402.txt | 6 +- test/prism/snapshots/whitequark/ruby_bug_9669.txt | 3 +- test/prism/snapshots/whitequark/send_attr_asgn.txt | 12 +- .../whitequark/send_attr_asgn_conditional.txt | 3 +- test/prism/snapshots/whitequark/send_binary_op.txt | 63 ++++--- .../snapshots/whitequark/send_block_chain_cmd.txt | 21 ++- test/prism/snapshots/whitequark/send_call.txt | 6 +- test/prism/snapshots/whitequark/send_index.txt | 6 +- .../prism/snapshots/whitequark/send_index_asgn.txt | 9 +- .../whitequark/send_index_asgn_legacy.txt | 9 +- .../snapshots/whitequark/send_index_legacy.txt | 6 +- .../whitequark/send_lambda_args_noparen.txt | 3 +- .../whitequark/send_op_asgn_conditional.txt | 3 +- test/prism/snapshots/whitequark/send_self.txt | 3 +- .../prism/snapshots/whitequark/send_self_block.txt | 3 +- test/prism/snapshots/whitequark/space_args_arg.txt | 3 +- .../snapshots/whitequark/space_args_arg_block.txt | 9 +- .../snapshots/whitequark/space_args_arg_call.txt | 3 +- .../whitequark/space_args_arg_newline.txt | 3 +- test/prism/snapshots/whitequark/ternary.txt | 6 +- .../whitequark/ternary_ambiguous_symbol.txt | 3 +- .../snapshots/whitequark/trailing_forward_arg.txt | 3 +- .../whitequark/unary_num_pow_precedence.txt | 14 +- test/prism/snapshots/whitequark/undef.txt | 3 +- test/prism/snapshots/whitequark/var_and_asgn.txt | 3 +- test/prism/snapshots/whitequark/var_op_asgn.txt | 12 +- test/prism/snapshots/whitequark/var_or_asgn.txt | 3 +- test/prism/snapshots/whitequark/when_splat.txt | 3 +- test/prism/snapshots/yield.txt | 12 +- 372 files changed, 3270 insertions(+), 1345 deletions(-) create mode 100644 prism/util/pm_integer.c create mode 100644 prism/util/pm_integer.h create mode 100644 test/prism/integer_parse_test.rb Latest commit hash = a154ea0c91 $$$[end] "make update-src -j3" exit with 0. $$$[beg] make after-update -j3 sed 's/{\$([^(){}]*)[^{}]*}//g' /home/opc/ruby/src/master/common.mk > uncommon.mk /home/opc/ruby/src/master/revision.h updated generating /home/opc/ruby/src/master/ext/ripper/eventids2table.c make[1]: Entering directory '/home/opc/ruby/src/master/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/home/opc/ruby/src/master/ext/ripper' generating aarch64-linux-fake.rb aarch64-linux-fake.rb updated /bin/sh /home/opc/ruby/src/master/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp rbconfig.rb unchanged generating enc.mk making srcs under enc make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/home/opc/ruby/build/master' Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622 Update debug to 2d602636d99114d55a32fedd652c9c704446a749 Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision - echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision - echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision - /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50 echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision - /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision unchanged Extracting bundle gem minitest-5.22.2... Unpacked gems/minitest-5.22.2.gem $$$[end] "make after-update -j3" exit with 0. $$$[beg] make miniruby -j3 BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -j3 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 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 /home/opc/ruby/src/master/miniinit.c compiling /home/opc/ruby/src/master/ast.c compiling /home/opc/ruby/src/master/compile.c compiling /home/opc/ruby/src/master/cont.c compiling /home/opc/ruby/src/master/eval.c compiling /home/opc/ruby/src/master/gc.c compiling /home/opc/ruby/src/master/hash.c compiling /home/opc/ruby/src/master/iseq.c compiling /home/opc/ruby/src/master/load.c compiling /home/opc/ruby/src/master/rjit.c compiling /home/opc/ruby/src/master/rjit_c.c compiling /home/opc/ruby/src/master/proc.c compiling /home/opc/ruby/src/master/ruby.c compiling /home/opc/ruby/src/master/thread.c compiling /home/opc/ruby/src/master/version.c compiling /home/opc/ruby/src/master/vm.c compiling /home/opc/ruby/src/master/vm_backtrace.c compiling /home/opc/ruby/src/master/vm_dump.c compiling /home/opc/ruby/src/master/vm_trace.c compiling prism/api_node.c compiling /home/opc/ruby/src/master/prism/api_pack.c compiling /home/opc/ruby/src/master/prism/diagnostic.c compiling /home/opc/ruby/src/master/prism/encoding.c compiling /home/opc/ruby/src/master/prism/extension.c compiling prism/node.c compiling /home/opc/ruby/src/master/prism/options.c compiling /home/opc/ruby/src/master/prism/pack.c compiling prism/prettyprint.c compiling /home/opc/ruby/src/master/prism/regexp.c compiling prism/serialize.c compiling prism/token_type.c compiling /home/opc/ruby/src/master/prism/util/pm_buffer.c compiling /home/opc/ruby/src/master/prism/util/pm_char.c compiling /home/opc/ruby/src/master/prism/util/pm_constant_pool.c compiling /home/opc/ruby/src/master/prism/util/pm_integer.c compiling /home/opc/ruby/src/master/prism/util/pm_list.c compiling /home/opc/ruby/src/master/prism/util/pm_memchr.c compiling /home/opc/ruby/src/master/prism/util/pm_newline_list.c compiling /home/opc/ruby/src/master/prism/util/pm_state_stack.c compiling /home/opc/ruby/src/master/prism/util/pm_string.c compiling /home/opc/ruby/src/master/prism/util/pm_string_list.c compiling /home/opc/ruby/src/master/prism/util/pm_strncasecmp.c compiling /home/opc/ruby/src/master/prism/util/pm_strpbrk.c compiling /home/opc/ruby/src/master/prism/prism.c compiling /home/opc/ruby/src/master/prism_init.c linking miniruby $$$[end] "make miniruby -j3" exit with 0. $$$[beg] make ruby -j3 BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -j3 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 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 /home/opc/ruby/src/master/loadpath.c builtin_binary.inc updated 961a8b913fe5e2f5d8f882c33f1849a79c40cc76000adb4794c6199dc43cddaa builtin_binary.inc compiling /home/opc/ruby/src/master/builtin.c linking static-library libruby-static.a linking ruby $$$[end] "make ruby -j3" exit with 0. $$$[beg] make all -j3 BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -j3 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk encdb.h unchanged making srcs under enc making enc make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk updated make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'. make[1]: Leaving directory '/home/opc/ruby/build/master' making encs make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/home/opc/ruby/build/master' make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty' make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Entering directory '/home/opc/ruby/build/master' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/home/opc/ruby/build/master' $$$[end] "make all -j3" exit with 0. $$$[beg] make install -j3 Update minitest to 00affdbf08f42b9b12df043e9fe28e56ad33b622 Update debug to 2d602636d99114d55a32fedd652c9c704446a749 Update bigdecimal to 741fb93b566959663269ecd988e278a974528a1d echo 2d602636d99114d55a32fedd652c9c704446a749 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision - echo 00affdbf08f42b9b12df043e9fe28e56ad33b622 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision - echo 741fb93b566959663269ecd988e278a974528a1d | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision - /home/opc/ruby/src/master/.bundle/.timestamp/debug.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/minitest.revision unchanged /home/opc/ruby/src/master/.bundle/.timestamp/bigdecimal.revision unchanged Update drb to 29389313b6f0d1b215ba16cdc28062dbc44c3c50 BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -j3 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs echo 29389313b6f0d1b215ba16cdc28062dbc44c3c50 | /bin/sh /home/opc/ruby/src/master/tool/ifchange /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision - gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk /home/opc/ruby/src/master/.bundle/.timestamp/drb.revision unchanged encdb.h unchanged Extracting bundle gem minitest-5.22.2... making srcs under enc making enc Unpacked gems/minitest-5.22.2.gem make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk unchanged make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'. make[1]: Leaving directory '/home/opc/ruby/build/master' making encs make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefile exts.mk make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/home/opc/ruby/build/master' exts.mk unchanged make[1]: Entering directory '/home/opc/ruby/build/master' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Entering directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty' make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Entering directory '/home/opc/ruby/build/master' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/home/opc/ruby/build/master' ./miniruby -I/home/opc/ruby/src/master/lib -I. -I.ext/common /home/opc/ruby/src/master/tool/runruby.rb --extout=.ext -- --disable-gems -r./aarch64-linux-fake /home/opc/ruby/src/master/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j3 --jobserver-auth=4,5" --make-flags=" -j3 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="doc" --gnumake --install=all --exclude=doc Installing to installing binary commands: /home/opc/ruby/install/master/bin installing base libraries: /home/opc/ruby/install/master/lib installing arch files: /home/opc/ruby/install/master/lib/ruby/3.4.0+0/aarch64-linux installing pkgconfig data: /home/opc/ruby/install/master/lib/pkgconfig installing extension objects: /home/opc/ruby/install/master/lib/ruby/3.4.0+0/aarch64-linux installing extension objects: /home/opc/ruby/install/master/lib/ruby/site_ruby/3.4.0+0/aarch64-linux installing extension objects: /home/opc/ruby/install/master/lib/ruby/vendor_ruby/3.4.0+0/aarch64-linux installing extension headers: /home/opc/ruby/install/master/include/ruby-3.4.0+0/aarch64-linux installing extension scripts: /home/opc/ruby/install/master/lib/ruby/3.4.0+0 installing extension scripts: /home/opc/ruby/install/master/lib/ruby/site_ruby/3.4.0+0 installing extension scripts: /home/opc/ruby/install/master/lib/ruby/vendor_ruby/3.4.0+0 installing extension headers: /home/opc/ruby/install/master/include/ruby-3.4.0+0/ruby installing command scripts: /home/opc/ruby/install/master/bin installing library scripts: /home/opc/ruby/install/master/lib/ruby/3.4.0+0 installing common headers: /home/opc/ruby/install/master/include/ruby-3.4.0+0 installing manpages: /home/opc/ruby/install/master/share/man/man1 installing default gems from lib: /home/opc/ruby/install/master/lib/ruby/gems/3.4.0+0 benchmark 0.3.0 bundler 2.6.0.dev cgi 0.4.1 delegate 0.3.1 did_you_mean 1.6.3 english 0.8.0 erb 4.0.4 error_highlight 0.6.0 fileutils 1.7.2 find 0.2.0 forwardable 1.3.3 ipaddr 1.2.6 irb 1.11.2 logger 1.6.0 net-http 0.4.1 net-protocol 0.2.2 open-uri 0.4.1 open3 0.2.1 optparse 0.4.0 ostruct 0.6.0 pp 0.5.0 prettyprint 0.2.0 prism 0.24.0 pstore 0.1.3 rdoc 6.6.2 readline 0.0.4 reline 0.4.2 resolv 0.3.0 ruby2_keywords 0.0.5 securerandom 0.3.1 set 1.1.0 shellwords 0.2.0 singleton 0.2.0 syntax_suggest 2.0.0 tempfile 0.2.1 time 0.3.0 timeout 0.4.1 tmpdir 0.2.0 tsort 0.2.0 un 0.3.0 uri 0.13.0 weakref 0.1.3 yaml 0.3.0 installing default gems from ext: /home/opc/ruby/install/master/lib/ruby/gems/3.4.0+0 date 3.3.4 digest 3.1.1 etc 1.4.3 fcntl 1.1.0 fiddle 1.1.3 io-console 0.7.2 io-nonblock 0.3.0 io-wait 0.3.1 json 2.7.1 openssl 3.2.0 pathname 0.3.0 psych 5.1.2 stringio 3.1.1 strscan 3.1.1 zlib 3.1.0 installing bundled gems: /home/opc/ruby/install/master/lib/ruby/gems/3.4.0+0 minitest 5.22.2 power_assert 2.0.3 rake 13.1.0 test-unit 3.6.2 rexml 3.2.6 rss 0.3.0 net-ftp 0.3.4 net-imap 0.4.10 net-pop 0.1.2 net-smtp 0.4.0.1 matrix 0.4.2 prime 0.1.2 rbs 3.4.4 typeprof 0.21.11 debug 1.9.1 racc 1.7.3 mutex_m 0.2.0 getoptlong 0.2.1 base64 0.2.0 bigdecimal 3.1.6 observer 0.1.2 abbrev 0.1.2 resolv-replace 0.1.1 rinda 0.2.0 drb 2.2.0 nkf 0.2.0 syslog 0.1.2 csv 3.2.8 installing bundled gem cache: /home/opc/ruby/install/master/lib/ruby/gems/3.4.0+0/cache $$$[end] "make install -j3" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j3' PASS all 1897 tests $$$[end] "make yes-btest TESTOPTS='-q -j3'" exit with 0. $$$[beg] make yes-test-basic TESTS='-j3' BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Checking leaked global symbols...none /home/opc/ruby/src/master/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /home/opc/ruby/src/master/basictest/test.rb:condition ..OK 2 /home/opc/ruby/src/master/basictest/test.rb:if/unless ...OK 3 /home/opc/ruby/src/master/basictest/test.rb:case .....OK 5 /home/opc/ruby/src/master/basictest/test.rb:while/until ........OK 8 /home/opc/ruby/src/master/basictest/test.rb:exception ..........OK 10 /home/opc/ruby/src/master/basictest/test.rb:array .......................................OK 39 /home/opc/ruby/src/master/basictest/test.rb:hash ...........................OK 27 /home/opc/ruby/src/master/basictest/test.rb:iterator ...........................................................................................................OK 107 /home/opc/ruby/src/master/basictest/test.rb:float ................................................................................OK 80 /home/opc/ruby/src/master/basictest/test.rb:bignum ...............................OK 31 /home/opc/ruby/src/master/basictest/test.rb:string & char ..............................................................OK 62 /home/opc/ruby/src/master/basictest/test.rb:assignment ..........OK 10 /home/opc/ruby/src/master/basictest/test.rb:call ......OK 6 /home/opc/ruby/src/master/basictest/test.rb:proc .........OK 9 /home/opc/ruby/src/master/basictest/test.rb:signal ..OK 2 /home/opc/ruby/src/master/basictest/test.rb:eval ...........................OK 27 /home/opc/ruby/src/master/basictest/test.rb:system ........OK 8 /home/opc/ruby/src/master/basictest/test.rb:const .....OK 5 /home/opc/ruby/src/master/basictest/test.rb:clone .....OK 5 /home/opc/ruby/src/master/basictest/test.rb:marshal ....OK 4 /home/opc/ruby/src/master/basictest/test.rb:pack ....OK 4 /home/opc/ruby/src/master/basictest/test.rb:math ..OK 2 /home/opc/ruby/src/master/basictest/test.rb:struct ......OK 6 /home/opc/ruby/src/master/basictest/test.rb:variable ............OK 12 /home/opc/ruby/src/master/basictest/test.rb:trace ...OK 3 /home/opc/ruby/src/master/basictest/test.rb:defined? ............OK 12 /home/opc/ruby/src/master/basictest/test.rb:alias ......OK 6 /home/opc/ruby/src/master/basictest/test.rb:path .......................OK 23 /home/opc/ruby/src/master/basictest/test.rb:gc ....OK 4 test succeeded $$$[end] "make yes-test-basic TESTS='-j3'" exit with 0. $$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j3' BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 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 '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/home/opc/ruby/build/master' making srcs under enc make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'. make[1]: Leaving directory '/home/opc/ruby/build/master' making encs make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/home/opc/ruby/build/master' make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Entering directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/json' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty' make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/home/opc/ruby/build/master' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/home/opc/ruby/build/master' Run options: --seed=41372 "--ruby=./miniruby -I/home/opc/ruby/src/master/lib -I. -I.ext/common /home/opc/ruby/src/master/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/home/opc/ruby/src/master/test/.excludes --name=!/memory_leak/ --stderr-on-failure -j3 # Running tests: [ 1/870] 600306=test_array [ 2/870] 600308=test_rdoc_context [ 3/870] 600307=test_gem_command_manager [ 4/870] 600306=test_enumerator [ 5/870] 600307=test_enc_associate [ 6/870] 600307=test_open-uri [ 7/870] 600308=test_case [ 8/870] 600308=test_recorder [ 9/870] 600308=test_yaml_special_cases [ 10/870] 600308=test_gem_commands_sources_command [ 11/870] 600307=json_addition_test [ 12/870] 600307=test_gem_source_list [ 13/870] 600308=test_name_error [ 14/870] 600307=test_exit [ 15/870] 600308=test_class [ 16/870] 600307=test_rdoc_parser_rd [ 17/870] 600307=test_const [ 18/870] 600307=test_sprintf [ 19/870] 600307=test_safe_load [ 20/870] 600307=test_math [ 21/870] 600307=test_gc [ 22/870] 600307=comments_test [ 23/870] 600307=test_qsort [ 24/870] 600307=ripper_test [ 25/870] 600307=test_iso_8859 [ 26/870] 600307=test_libs [ 27/870] 600307=test_pinned [ 28/870] 600307=test_cgi_tag_helper [ 29/870] 600307=test_pack [ 30/870] 600306=test_ansi_with_terminfo [ 31/870] 600307=test_inadvertent_creation [ 32/870] 600306=test_weakmap [ 33/870] 600307=test_coderange [ 34/870] 600307=test_framework [ 35/870] 600307=test_nil2vtempty [ 36/870] 600307=test_date_time [ 37/870] 600307=test_rdoc_generator_json_index [ 38/870] 600307=test_stack [ 39/870] 600307=test_windows_1252 [ 40/870] 600307=test_emoji [ 41/870] 600307=test_sorted_set [ 42/870] 600308=test_fileutils [ 43/870] 600306=test_sleep [ 44/870] 600307=test_mixed_unicode_escapes [ 45/870] 600307=test_gem_dependency_resolution_error [ 46/870] 600307=test_gem_resolver_vendor_set [ 47/870] 600307=test_condition [ 48/870] 600307=test_jaro_winkler [ 49/870] 600307=test_cp949 [ 50/870] 600307=test_gem_install_update_options [ 51/870] 600307=test_econvLeaked file descriptor: TestFileUtils#test_chown: 8 #<File::Stat dev=0xfc00, ino=2356781, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=6940392, blksize=65536, blocks=13560, atime=2024-02-23 03:48:20.591626516 +0000, mtime=2024-02-23 03:48:18.555619659 +0000, ctime=2024-02-23 03:48:18.555619659 +0000> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 600308 opc 8r REG 252,0 6940392 2356781 /var/lib/sss/mc/group Leaked file descriptor: TestFileUtils#test_chown_error: 9 #<File::Stat dev=0xfc00, ino=2356777, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=9253600, blksize=65536, blocks=18080, atime=2024-02-23 03:45:02.962960894 +0000, mtime=2024-02-23 03:45:02.950960854 +0000, ctime=2024-02-23 03:45:02.950960854 +0000> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 600308 opc 9r REG 252,0 9253600 2356777 /var/lib/sss/mc/passwd [ 52/870] 600308=test_stringchar [ 53/870] 600308=test_gem_request_set_lockfile_parser [ 54/870] 600308=test_sizeof [ 55/870] 600307=test_date_attr [ 56/870] 600307=test_face [ 57/870] 600307=test_system [ 58/870] 600306=test_numhash [ 59/870] 600306=test_pkey_rsa [ 60/870] 600307=test_flush [ 61/870] 600307=test_gem_specification [ 62/870] 600306=test_method_cache [ 63/870] 600306=test_parse [ 64/870] 600306=test_rdoc_cross_reference [ 65/870] 600308=test_rdoc_class_module [ 66/870] 600306=test_win32ole_variable [ 67/870] 600306=test_method [ 68/870] 600308=test_m17n [ 69/870] 600308=test_yjit [ 70/870] 600308=test_gem_uninstaller [ 71/870] 600307=test_cclass [ 72/870] 600307=test_gem_dependency [ 73/870] 600307=test_x509name [ 74/870] 600307=test_yaml [ 75/870] 600307=test_argf [ 76/870] 600308=test_json_tree [ 77/870] 600308=test_koi8 [ 78/870] 600308=test_gem_remote_fetcher [ 79/870] 600306=test_pkcs12 [ 80/870] 600306=test_parser_events [ 81/870] 600306=test_filter [ 82/870] 600306=test_set [ 83/870] 600306=attribute_write_test [ 84/870] 600306=test_utf16 [ 85/870] 600306=test_http [ 86/870] 600308=test_str2big [ 87/870] 600308=test_gem_package_tar_writer [ 88/870] 600308=test_ractor [ 89/870] 600308=test_case [ 90/870] 600308=test_severity [ 91/870] 600308=test_rdoc_markup_to_rdoc [ 92/870] 600308=test_sprintf_comb [ 93/870] 600308=test_method_cache [ 94/870] 600308=test_too_many_dummy_encodings [ 95/870] 600308=locals_test [ 96/870] 600308=test_gem_commands_push_command [ 97/870] 600307=test_backtrace [ 98/870] 600308=test_settracefunc [ 99/870] 600308=test_gem_text [100/870] 600308=test_tracepoint [101/870] 600307=test_rdoc_task [102/870] 600307=test_gem_gemcutter_utilities [103/870] 600308=test_rendering [104/870] 600308=test_gem_source_local [105/870] 600307=desugar_compiler_test [106/870] 600307=test_internal_ivar [107/870] 600307=test_win32ole [108/870] 600307=test_hash [109/870] 600308=parser_test [110/870] 600308=test_http [111/870] 600308=test_gem_dependency_installer [112/870] 600308=test_pty [113/870] 600308=test_gem_package_old [114/870] 600308=test_gem_request [115/870] 600308=test_gem_commands_which_command [116/870] 600308=test_scan_args [117/870] 600308=test_gem_commands_specification_command [118/870] 600307=encoding_test [119/870] 600308=test_webauthn_listener [120/870] 600307=test_rdoc_rubygems_hook [121/870] 600308=test_gem_resolver_api_specification [122/870] 600308=test_ractor [123/870] 600307=test_gem_ext_cargo_builder_unit [124/870] 600308=test_rational [125/870] 600308=test_case_mapping [126/870] 600307=test_pkey_ec [127/870] 600308=test_svcb_https [128/870] 600307=test_buffering [129/870] 600308=test_thread [130/870] 600307=test_arity [131/870] 600308=test_mdns [132/870] 600307=test_open3 [133/870] 600308=test_date_parse [134/870] 600308=test_key_event_record [135/870] 600308=test_gem_commands_dependency_command [136/870] 600308=test_gbk [137/870] 600308=test_backtrace [138/870] 600308=test_default_gems [139/870] 600308=test_switch_hitter [140/870] 600308=test_unicode_escape [141/870] 600308=test_gem_spec_fetcher [142/870] 600308=test_yamldbm [143/870] 600308=test_grapheme_breaks [144/870] 600308=test_hash_create [145/870] 600308=test_tree_spell_checker [146/870] 600308=test_set [147/870] 600308=test_enumerable [148/870] 600308=test_rdoc_method_attr [149/870] 600308=test_dryrun [150/870] 600308=test_gc_compact [151/870] 600306=test_rdoc_i18n_locale [152/870] 600306=test_boolean [153/870] 600306=test_gem_resolver_lock_specification [154/870] 600307=test_queue [155/870] 600307=test_enc_raise [156/870] 600307=test_clone [157/870] 600306=test_cgi_util [158/870] 600307=test_ole_methods [159/870] 600307=test_prettyprint [160/870] 600307=test_gem_uri_formatter [161/870] 600307=test_rdoc_store [162/870] 600306=test_shift_jis [163/870] 600306=test_optimization [164/870] 600307=test_force_exit [165/870] 600307=test_rubyoptions [166/870] 600308=test_files_sample [167/870] 600308=test_rdoc_stats [168/870] 600308=test_data_error [169/870] 600308=test_remote_fetch_error [170/870] 600308=test_show_source [171/870] 600308=test_yield [172/870] 600308=regexp_test [173/870] 600308=test_asn1 [174/870] 600308=test_gem_command [175/870] 600308=test_random [176/870] 600308=test_gem_resolver_lock_set [177/870] 600308=test_rdoc_generator_darkfish [178/870] 600308=test_undef [179/870] 600308=test_gem_update_suggestion [180/870] 600308=test_assignment [181/870] 600306=test_emoji_breaks [182/870] 600308=test_normalize [183/870] 600308=test_gem_commands_open_command [184/870] 600308=test_verbose [185/870] 600308=test_optarg [186/870] 600308=test_gem_commands_pristine_command [187/870] 600307=test_rdoc_tom_doc [188/870] 600307=test_hash [189/870] 600307=test_variable [190/870] 600307=test_date_ractor [191/870] 600307=test_erb [192/870] 600307=test_gem_security [193/870] 600306=test_key_actor_emacs [194/870] 600306=test_gem_resolver_git_specification [195/870] 600308=test_utf32 [196/870] 600308=test_basicinstructions [197/870] 600306=test_noarg [198/870] 600308=test_exception [199/870] 600306=test_arith_seq_beg_len_step [200/870] 600308=test_raise_exception [201/870] 600306=memsize_test [202/870] 600306=test_gem_resolver_requirement_list [203/870] 600306=test_pp .Leaked file descriptor: PPTestModule::PPFileStatTest#test_nothing_raised: 8 #<File::Stat dev=0xfc00, ino=2356777, mode=0100664, nlink=1, uid=994, gid=990, rdev=0x0, size=9253600, blksize=65536, blocks=18080, atime=2024-02-23 03:45:02.962960894 +0000, mtime=2024-02-23 03:45:02.950960854 +0000, ctime=2024-02-23 03:45:02.950960854 +0000> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 600306 opc 8r REG 252,0 9253600 2356777 /var/lib/sss/mc/passwd [204/870] 600306=test_gem_impossible_dependencies_error [205/870] 600306=test_merge_keys [206/870] 600306=test_err_in_callback [207/870] 600306=test_method_name_check [208/870] 600306=test_storage [209/870] 600306=test_cesu8 [210/870] 600306=test_rdoc_extend [211/870] 600306=test_did_you_mean [212/870] 600306=test_shapes [213/870] 600306=test_dot_dot [214/870] 600306=test_gem_rdoc [215/870] 600306=pattern_test [216/870] 600306=test_rendering [217/870] 600306=test_kernel [218/870] 600308=test_gem_commands_install_command [219/870] 600306=test_string [220/870] 600306=test_iterator [221/870] 600306=test_forwardable [222/870] 600306=test_process [223/870] 600306=test_fd_setsize [224/870] 600306=!Nothing_to_test [225/870] 600306=test_threadgroup [226/870] 600308=test_complex [227/870] 600308=test_memory_view [228/870] 600306=test_dir_m17n [229/870] 600308=test_array_create [230/870] 600308=parse_test [231/870] 600306=test_pack [232/870] 600306=test_io_wait [233/870] 600306=test_kwargs [234/870] 600306=test_rdoc_parser_c [235/870] 600306=test_len [236/870] 600306=json_fixtures_test [237/870] 600306=test_gem_doctor [238/870] 600306=parameters_signature_test [239/870] 600306=test_rdoc_parser_changelog [240/870] 600306=test_gem_dependency_list [241/870] 600306=test_gem_commands_outdated_command [242/870] 600306=test_securerandom [243/870] 600306=test_gem_commands_fetch_command [244/870] 600306=test_typeddata [245/870] 600306=test_tsort [246/870] 600306=test_rdoc_markup_attributes [247/870] 600306=test_random_formatter [248/870] 600306=test_string_processing [249/870] 600306=test_rand [250/870] 600308=test_bmethod [251/870] 600308=test_gem_source_specific_file [252/870] 600306=test_provider [253/870] 600306=test_euc_kr [254/870] 600306=test_process [255/870] 600308=test_rdoc_code_object [256/870] 600308=test_rdoc_markdown [257/870] 600308=test_gem_request_set_lockfile [258/870] 600307=test_postponed_job [259/870] 600308=test_key_actor_vi [260/870] 600307=test_rdoc_encoding [261/870] 600308=test_win32ole_variant_outarg [262/870] 600307=test_common [263/870] 600308=test_rdoc_markup_to_html_snippet [264/870] 600308=test_generic [265/870] 600308=test_deprecate [266/870] 600307=test_rdoc_constant [267/870] 600308=test_httpresponses [268/870] 600308=library_symbols_test [269/870] 600308=test_rdoc_text [270/870] 600308=test_objspace [271/870] 600307=test_require [272/870] 600307=test_stringify_symbols [273/870] 600307=test_ns_spki [274/870] 600307=test_have_library [275/870] 600307=test_stream [276/870] 600307=test_rdoc_markup_parser [277/870] 600307=test_iseq_load [278/870] 600307=test_rdoc_markup_indented_paragraph [279/870] 600307=test_rdoc_markup_to_html_crossref [280/870] 600307=test_files_test_2 [281/870] 600307=test_div [282/870] 600307=test_bash_completion [283/870] 600307=test_exception Leaked file descriptor: TestProcess#test_uid_from_name: 9 #<File::Stat dev=0x9, ino=1819750629, mode=0140777, nlink=1, uid=1000, gid=1000, rdev=0x0, size=0, blksize=65536, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 600306 opc 9u unix 0x0000000000000000 0t0 1819750629 type=STREAM [284/870] 600307=test_optparse [285/870] 600307=test_deprecated [286/870] 600307=test_rdoc_context_section [287/870] 600307=test_io_buffer [288/870] 600307=test_pack [289/870] 600307=test_gem_commands_environment_command [290/870] 600307=test_pkcs7 [291/870] 600307=test_zsh_completion [292/870] 600307=test_basicsocket [293/870] 600307=test_class_name_check [294/870] 600307=test_syntax [295/870] 600307=test_scalar [296/870] 600307=test_gem_commands_cert_command [297/870] 600306=test_ws [298/870] 600306=test_date_strftime [299/870] 600306=json_parser_test [300/870] 600306=test_rdoc_markup_to_tt_only [301/870] 600306=ruby_parser_test [302/870] 600306=test_gem_commands_stale_command [303/870] 600306=test_rdoc_alias [304/870] 600306=test_weakref [305/870] 600306=test_instrumentation_api [306/870] 600307=test_rdoc_markup_to_bs [307/870] 600307=test_key_name_check [308/870] 600307=test_rdoc_markup_raw [309/870] 600307=test_timeout [310/870] 600307=test_word [311/870] 600307=test_gem_ext_rake_builder [312/870] 600307=test_rdoc_require [313/870] 600307=test_fstring [314/870] 600307=test_numeric [315/870] 600306=test_singleton [316/870] 600306=test_m17n_comb [317/870] 600307=test_pkey_dh [318/870] 600307=test_memory_view [319/870] 600307=test_data [320/870] 600307=test_null [321/870] 600307=test_ractor [322/870] 600307=test_gem_commands_query_command [323/870] 600307=test_gem_platform [324/870] 600307=test_bigzero [325/870] 600307=test_external_new [326/870] 600307=test_pkey [327/870] 600307=test_win32ole_typelib [328/870] 600307=test_gem_util [329/870] 600307=test_gem_security_signer [330/870] 600307=test_config [331/870] 600307=test_complex2 [332/870] 600307=test_thread [333/870] 600307=test_literal [334/870] 600306=test_gem_unsatisfiable_dependency_error [335/870] 600306=test_rdoc_i18n_text [336/870] 600306=test_io [337/870] 600306=test_input_method [338/870] 600306=test_tempfile [339/870] 600307=test_http_request [340/870] 600307=test_coverage [341/870] 600306=test_store [342/870] 600306=test_rdoc_markup_pre_process [343/870] 600306=test_pathname [344/870] 600306=test_fnmatch [345/870] 600307=test_protect [346/870] 600307=test_big5 [347/870] 600307=test_date [348/870] 600307=test_gem_commands_update_command [349/870] 600306=test_tree_builder [350/870] 600306=test_egrep_cpp [351/870] 600306=test_serialize_subclasses [352/870] 600306=test_gem_resolver_index_specification [353/870] 600306=test_frozen [354/870] 600306=test_date_conv [355/870] 600306=test_webauthn_poller [356/870] 600306=test_rdoc_markup_verbatim [357/870] 600306=test_timeout [358/870] 600306=test_rdoc_generator_pot_po_entry [359/870] 600306=test_erb_m17n [360/870] 600306=test_marshalable [361/870] 600306=test_line_editor [362/870] 600306=test_enumerator_kw [363/870] 600306=test_help [364/870] 600306=test_string_memory [365/870] 600306=test_files_lib [366/870] 600307=version_test [367/870] 600307=test_complexrational [368/870] 600307=test_raise [369/870] 600307=test_function_entry [370/870] 600307=test_rdoc_any_method [371/870] 600307=test_error_highlight [372/870] 600307=json_common_interface_test [373/870] 600307=test_string [374/870] 600307=test_psych [375/870] 600307=test_nil [376/870] 600307=test_wait [377/870] 600307=test_import [378/870] 600306=test_human_typo [379/870] 600306=test_pkey_dsa [380/870] 600307=test_logger [381/870] 600307=test_gem_resolver_specification [382/870] 600307=test_big2str [383/870] 600307=test_gem_resolver_dependency_request [384/870] 600307=test_command [385/870] 600307=test_euc_tw [386/870] 600307=test_cstr [387/870] 600307=test_gem_commands_yank_command [388/870] 600308=test_yaml_tree [389/870] 600308=test_rdoc_markdown_test [390/870] 600307=test_io_timeout [391/870] 600307=test_type_completor [392/870] 600307=test_rdoc_normal_module [393/870] 600307=test_yjit_exit_locations [394/870] 600307=test_rdoc_rdoc [395/870] 600307=test_comparable [396/870] 600307=test_gem_config_file [397/870] 600307=json_string_matching_test [398/870] 600307=test_nowrite [399/870] 600307=test_passing_block [400/870] 600307=test_defined [401/870] 600307=test_thread_queue [402/870] 600308=test_ldap [403/870] 600308=test_kdf [404/870] 600308=test_io_buffer [405/870] 600308=test_gem_ext_ext_conf_builder [406/870] 600306=test_gem_version [407/870] 600306=test_spell_checker [408/870] 600306=test_frozen_error [409/870] 600306=test_reqarg [410/870] 600306=test_enumerator [411/870] 600306=test_path_to_class [412/870] 600306=test_c_struct_builder [413/870] 600308=test_yield_block [414/870] 600308=test_bug-5832 [415/870] 600308=test_gem_uri [416/870] 600308=test_gem_package_tar_reader_entry [417/870] 600306=test_resource [418/870] 600306=test_date_compat [419/870] 600306=test_gem_version_option [420/870] 600306=test_rdoc_include [421/870] 600306=test_win32ole_record [422/870] 600306=test_pstore [423/870] 600306=test_ubf_async_safe [424/870] 600306=test_rdoc_options [425/870] 600308=test_zlib [426/870] 600306=test_gem_commands_unpack_command [427/870] 600306=test_console_attr [428/870] 600306=test_proc [429/870] 600306=test_gem_ext_cargo_builder [430/870] 600306=test_nextafter [431/870] 600306=test_gem_commands_owner_command [432/870] 600306=test_capacity [433/870] 600306=test_time [434/870] 600306=test_file [435/870] 600306=test_numeric [436/870] 600306=test_yamlstore [437/870] 600306=test_bug-3571 [438/870] 600306=test_flags [439/870] 600306=test_init [440/870] 600306=test_gem_request_connection_pools [441/870] 600307=test_rat [442/870] 600307=test_find [443/870] 600307=test_constant [444/870] 600306=test_rdoc_generator_markup [445/870] 600306=test_hmac [446/870] 600306=test_encoding [447/870] 600306=test_gem_commands_server_command [448/870] 600306=test_gem_resolver_activation_request [449/870] 600306=test_function [450/870] 600306=test_string [451/870] 600307=test_macro [452/870] 600307=test_pipe [453/870] 600307=test_gem_requirement [454/870] 600307=test_integer [455/870] 600307=test_rdoc_markup_to_table_of_contents [456/870] 600307=test_gem_name_tuple [457/870] 600307=parse_comments_test [458/870] 600307=test_win32ole_method_event [459/870] 600307=test_tcp [460/870] 600307=test_win32ole_type_event [461/870] 600307=test_keyword [462/870] 600307=test_gem_path_support [463/870] 600307=test_arity [464/870] 600307=test_trace [465/870] 600307=test_lambda [466/870] 600307=test_rb_str_dup [467/870] 600307=test_scalar_scanner [468/870] 600307=test_file [469/870] 600308=test_config [470/870] 600308=test_summary [471/870] 600308=bom_test [472/870] 600308=test_x509ext [473/870] 600308=test_emitter [474/870] 600308=test_gem_resolver_installer_set [475/870] 600308=test_append [476/870] 600308=test_foreach [477/870] 600308=test_rdoc_markup_to_html [478/870] 600308=test_gem_resolver_api_set [479/870] 600308=test_duplicate [480/870] 600308=test_helper [481/870] 600308=test_case_options [482/870] 600308=format_errors_test [483/870] 600308=test_cgi_header [484/870] 600308=test_object [485/870] 600308=test_member [486/870] 600308=test_kill_ring [487/870] 600308=test_addr [488/870] 600308=test_mailto [489/870] 600308=test_rdoc_normal_class [490/870] 600308=test_within_pipe [491/870] 600308=test_pointer [492/870] 600308=test_nofree [493/870] 600308=test_whileuntil [494/870] 600308=test_regexp [495/870] 600307=test_beginendblock [496/870] 600307=test_monitor [497/870] 600307=test_eval [498/870] 600307=test_object_references [499/870] 600307=test_gem_source_subpath_problem [500/870] 600307=test_arith_seq_extract [501/870] 600307=compiler_test [502/870] 600307=test_ruby_lex [503/870] 600307=test_ossl [504/870] 600307=test_buffered_io [505/870] 600307=test_gem_installer [506/870] 600307=test_bug_reporter [507/870] 600307=test_color_printer [508/870] 600307=test_super [509/870] 600307=test_gem_commands_exec_command [510/870] 600307=unescape_test [511/870] 600307=test_object [512/870] 600307=test_dln [513/870] 600307=test_gem_source_vendor [514/870] 600307=test_gem_resolver [515/870] 600307=test_func [516/870] 600306=test_config [517/870] 600306=json_encoding_test [518/870] 600306=test_vm_dump [519/870] 600306=test_convertible [520/870] 600307=errors_test [521/870] 600307=test_pkg_config [522/870] 600307=test_gem_available_set [523/870] 600307=test_modify_expand [524/870] 600307=test_insns_leaf [525/870] 600307=test_ifunless [526/870] 600307=test_gem_console_ui [527/870] 600307=test_x509req [528/870] 600307=test_httpresponse [529/870] 600307=test_rdoc_parser_ruby [530/870] 600307=test_readpartial [531/870] 600307=test_gem_commands_cleanup_command [532/870] 600308=test_class2name [533/870] 600308=test_refinement [534/870] 600307=test_transcode [535/870] 600307=test_debug [536/870] 600307=test_profile_frames [537/870] 600306=test_pattern_key_name_check [538/870] 600306=test_flip [539/870] 600306=test_io_console [540/870] 600307=test_rdoc_markup_heading [541/870] 600307=test_x509crl [542/870] 600307=test_c_union_entity [543/870] 600307=test_cgi_session [544/870] 600307=test_notimplement [545/870] 600307=test_dns [546/870] 600307=test_gem_commands_uninstall_command [547/870] 600307=test_rdoc_markup_formatter [548/870] 600307=test_win32ole_event [549/870] 600307=test_helper [550/870] 600307=test_compile_prism [551/870] 600307=test_fips [552/870] 600307=test_alias [553/870] 600307=test_emitter [554/870] 600307=test_getopts [555/870] 600307=test_last_thread [556/870] 600306=test_thread_fd_close [557/870] 600306=test_gem_ext_cmake_builder [558/870] 600306=test_digest_extend [559/870] 600306=test_date_new [560/870] 600306=test_gem_commands_list_command [561/870] 600306=test_gem_resolver_local_specification [562/870] 600306=test_configuration [563/870] 600306=test_date_marshal [564/870] 600306=test_have_func [565/870] 600308=test_unix [566/870] 600308=test_integer [567/870] 600307=test_formatter [568/870] 600307=test_symbol [569/870] 600306=test_gem_commands_search_command [570/870] 600306=test_rdoc_servlet [571/870] 600306=test_coder [572/870] 600306=test_gem_commands_contents_command [573/870] 600306=test_context [574/870] 600306=test_udp [575/870] 600306=test_rdoc_markup_include [576/870] 600306=test_enum [577/870] 600306=test_recursion [578/870] 600306=test_require [579/870] 600308=test_range [580/870] 600308=test_gem_commands_signin_command [581/870] 600308=test_extlibs [582/870] 600306=test_iter_break [583/870] 600306=test_num2int [584/870] 600306=test_rbconfig [585/870] 600306=test_ts [586/870] 600306=test_locale [587/870] 600306=test_rdoc_attr [588/870] 600306=test_stream [589/870] 600306=test_trick [590/870] 600308=test_ractor [591/870] 600308=test_address_resolve [592/870] 600308=test_ractor [593/870] 600308=test_ansi_without_terminfo [594/870] 600308=json_generator_test [595/870] 600308=test_gem [596/870] 600307=test_cgi_core [597/870] 600307=test_gem_resolver_best_set [598/870] 600307=test_rdoc_markup_to_label [599/870] 600307=test_parser [600/870] 600307=test_nesting_parser [601/870] 600307=test_marshal [602/870] 600306=test_ancdata [603/870] 600306=ractor_test [604/870] 600306=test_rdoc_markup_hard_break [605/870] 600306=test_bignum [606/870] 600307=newline_test [607/870] 600307=test_enc_str_buf_cat [608/870] 600307=test_ssl [609/870] 600307=test_gem_commands_help_command [610/870] 600307=test_scheduler [611/870] 600308=test_ractor [612/870] 600307=test_gem_resolver_conflict [613/870] 600307=test_thread [614/870] 600308=test_socket [615/870] 600308=test_terminfo [616/870] 600308=test_inlinecache [617/870] 600308=test_bug-14834 [618/870] 600308=test_data [619/870] 600308=test_to_ruby [620/870] 600308=test_addrinfo [621/870] 600308=test_time_tz [622/870] 600308=test_history [623/870] 600308=test_to_ary_concat [624/870] 600306=test_gem_ext_builder [625/870] 600306=test_windows_1251 [626/870] 600306=test_gem_commands_build_command [627/870] 600308=test_ellipsize [628/870] 600308=test_call [629/870] 600306=test_reline [630/870] 600308=test_delegate [631/870] 600306=location_test [632/870] 600308=test_project_sanity [633/870] 600306=test_symbol [634/870] 600306=test_popen_deadlock [635/870] 600308=test_time [636/870] 600308=test_alias_and_anchor [637/870] 600308=test_rdoc_markup [638/870] 600308=test_key_stroke [639/870] 600308=test_euc_jp [640/870] 600308=test_ensured [641/870] 600308=test_sleep [642/870] 600306=test_webauthn_listener_response [643/870] 600306=test_gem_resolver_index_set [644/870] 600306=ruby_api_test [645/870] 600306=test_gem_request_set [646/870] 600306=test_gem_bundler_version_finder [647/870] 600306=test_gc [648/870] 600307=test_pattern_matching [649/870] 600307=test_folderitem2_invokeverb [650/870] 600307=test_set_len [651/870] 600307=constant_path_node_test [652/870] 600307=test_interned_str [653/870] 600307=test_gem_local_remote_options [654/870] 600307=test_gem_ext_cargo_builder_link_flag_converter [655/870] 600307=test_acceptable [656/870] 600307=test_rdoc_single_class [657/870] 600307=test_dup [658/870] 600307=test_struct [659/870] 600307=test_tmpdir [660/870] 600307=test_type [661/870] 600307=heredoc_dedent_test [662/870] 600307=test_rdoc_token_stream [663/870] 600307=test_mutex [664/870] 600308=test_date_arith [665/870] 600308=test_gem_resolver_vendor_specification [666/870] 600308=json_generic_object_test [667/870] 600308=test_fiddle [668/870] 600308=test_stringscanner [669/870] 600308=test_exception_at_throwing [670/870] 600308=test_gem_resolver_installed_specification [671/870] 600308=test_ractor [672/870] 600308=test_digest [673/870] 600307=test_gem_commands_check_command [674/870] 600307=test_gem_resolver_git_set [675/870] 600308=test_signedness [676/870] 600307=test_sexp [677/870] 600307=test_httpheader [678/870] 600307=test_ractor [679/870] 600307=test_rdoc_ri_driver [680/870] 600307=test_gem_safe_marshal [681/870] 600307=test_name_error_extension [682/870] 600307=test_gem_request_set_gem_dependency_api [683/870] 600307=test_object_create_start [684/870] 600307=test_https [685/870] 600308=test_gem_commands_info_command [686/870] 600308=test_weakkeymap [687/870] 600307=test_files_test [688/870] 600307=test_protocol [689/870] 600307=test_evaluation [690/870] 600307=test_rdoc_markup_to_ansi [691/870] 600308=test_ast [692/870] 600307=test_logdevice [693/870] 600307=test_bn [694/870] 600307=test_variable_name_check [695/870] 600307=test_require_path_check [696/870] 600307=test_x509cert [697/870] 600307=test_rdoc_markup_paragraph [698/870] 600307=test_irb [699/870] 600307=test_placearg [700/870] 600307=test_case_comprehensive [701/870] 600306=test_logperiod [702/870] 600306=test_rational2 [703/870] 600306=test_gem_package_tar_header [704/870] 600306=test_ssl_session [705/870] 600306=test_signal [706/870] 600306=test_gem_silent_ui [707/870] 600306=test_fixnum [708/870] 600306=test_continuation [709/870] 600306=test_gem_ci_detector [710/870] 600306=test_io_wait_uncommon [711/870] 600306=test_delete [712/870] 600306=test_rdoc_markup_document [713/870] 600306=test_gem_security_policy [714/870] 600306=test_handle [715/870] 600306=test_completion [716/870] 600306=test_file_exhaustive [717/870] 600306=test_metaclass [718/870] 600306=test_gem_gem_runner [719/870] 600306=test_require_lib [720/870] 600306=test_rdoc_markup_to_markdown [721/870] 600306=test_rdoc_markup_to_joined_paragraph [722/870] 600306=test_rdoc_generator_pot [723/870] 600306=test_rdoc_rd [724/870] 600306=test_x509store [725/870] 600307=test_rdoc_rd_block_parser [726/870] 600307=test_wss [727/870] 600307=test_rdoc_markup_attribute_manager [728/870] 600307=test_option [729/870] 600307=test_cgi_cookie [730/870] 600307=test_not [731/870] 600307=test_tracer [732/870] 600307=test_gem_resolver_composed_set [733/870] 600307=test_my_integer [734/870] 600307=test_debugger_integration [735/870] 600307=test_require [736/870] 600306=test_objectspace [737/870] 600306=test_new [738/870] 600306=test_update [739/870] 600306=test_cipher [740/870] 600306=test_gem_source_lock [741/870] 600306=test_load [742/870] 600306=test_win32ole_type [743/870] 600306=test_rdoc_rd_inline_parser [744/870] 600306=test_c_struct_entry [745/870] 600306=test_struct [746/870] 600306=test_cparser [747/870] 600307=test_rubyvm [748/870] 600307=fuzzer_test [749/870] 600307=test_rdoc_parser_markdown [750/870] 600307=test_change_word [751/870] 600307=test_depth_first [752/870] 600307=test_ostruct [753/870] 600307=test_config [754/870] 600307=test_ssl [755/870] 600306=test_load [756/870] 600306=test_bundled_ca [757/870] 600306=test_integer_comb [758/870] 600306=test_abi [759/870] 600306=test_gem_source_installed [760/870] 600306=test_gem_validator [761/870] 600306=test_usrmarshal [762/870] 600306=test_module [763/870] 600306=test_erb_command [764/870] 600306=test_gem_security_trust_dir [765/870] 600306=test_gem_commands_mirror [766/870] 600306=test_fiber [767/870] 600307=test_engine [768/870] 600307=test_key_error [769/870] 600307=test_win32ole_param [770/870] 600307=test_resize [771/870] 600307=test_lock_native_thread [772/870] 600307=test_gem_package_task [773/870] 600307=test_color [774/870] 600307=test_gem_stub_specification [775/870] 600307=test_float [776/870] 600307=test_cmethod [777/870] 600307=test_rdoc_top_level [778/870] 600307=test_io_m17n [779/870] 600307=test_rdoc_generator_ri [780/870] 600307=test_gem_stream_ui [781/870] 600307=test_unicode_normalize [782/870] 600308=test_reline_key [783/870] 600308=test_gem_commands_lock_command [784/870] 600308=test_gb18030 [785/870] 600308=test_propertyputref [786/870] 600308=test_mul [787/870] 600308=test_shellwords [788/870] 600308=test_rdoc_generator_pot_po [789/870] 600308=test_date_strptime [790/870] 600308=test_omap [791/870] 600308=test_ipaddr [792/870] 600308=test_ocsp [793/870] 600306=test_scanner_events [794/870] 600308=test_rdoc_parser_simple [795/870] 600306=test_nonblock [796/870] 600308=json_ext_parser_test [797/870] 600306=test_gem_ext_configure_builder [798/870] 600308=test_cgi_modruby [799/870] 600308=test_win32ole_variant [800/870] 600308=magic_comment_test [801/870] 600308=test_workspace [802/870] 600306=test_x509attr [803/870] 600306=test_printf [804/870] 600306=test_stat [805/870] 600306=test_etc [806/870] 600308=test_nomethod_error [807/870] 600308=test_rdoc_parser [808/870] 600308=test_https_proxy [809/870] 600306=test_win32ole_param_event [810/870] 600306=test_rdoc_rd_inline [811/870] 600308=test_digest [812/870] 600306=test_path [813/870] 600308=test_resolve_symbol [814/870] 600306=test_rubygems [815/870] 600308=test_closure [816/870] 600306=test_dir [817/870] 600306=test_files_test_1 [818/870] 600306=test_io [819/870] 600307=test_uncorrectable_name_check [820/870] 600307=test_singleton_function [821/870] 600307=test_history [822/870] 600307=test_gem_commands_setup_command [823/870] 600308=test_gem_safe_yaml [824/870] 600308=test_eval [825/870] 600308=test_document [826/870] 600308=test_env [827/870] 600307=test_gem_commands_signout_command [828/870] 600307=test_gem_package_tar_reader [829/870] 600307=test_pair [830/870] 600308=test_win32ole_variant_m [831/870] 600308=test_rdoc_ri_paths [832/870] 600308=test_parser [833/870] 600308=test_primitive [834/870] 600308=test_iseq [835/870] 600308=test_find_executable [836/870] 600308=integer_parse_test [837/870] 600308=test_autoconf [838/870] 600308=test_arithmetic_sequence [839/870] 600308=test_ractor_compatibility [840/870] 600308=test_cgi_multipart [841/870] 600308=test_lazy_enumerator [842/870] 600308=test_gem_request_set_lockfile_tokenizer [843/870] 600308=test_rdoc_comment [844/870] 600308=test_encoding [845/870] 600308=test_install [846/870] 600308=test_gem_source_fetch_problem [847/870] 600308=test_ftp [848/870] 600308=test_sockopt [849/870] 600308=test_array [850/870] 600307=test_gem_package [851/870] 600307=test_autoload [852/870] 600307=test_class [853/870] 600307=test_mkmf [854/870] 600307=test_gem_source [855/870] 600307=test_have_macro [856/870] 600307=test_benchmark [857/870] 600306=test_at_exit [858/870] 600306=test_random [859/870] 600306=test_assembler [860/870] 600306=test_stringio [861/870] 600306=test_thread_cv [862/870] 600306=test_files_ext [863/870] 600306=test_ripper [864/870] 600306=test_regex_casefold [865/870] 600306=test_lexer [866/870] 600306=test_win32ole_method [867/870] 600306=test_gem_source_git [868/870] 600307=test_unicode [869/870] 600307=dispatcher_test [870/870] 600307=test_eval_history Finished tests in 197.918843s, 126.5872 tests/s, 47972.8098 assertions/s. 25054 tests, 9494723 assertions, 0 failures, 0 errors, 256 skips ruby -v: ruby 3.4.0dev (2024-02-23T03:42:44Z master a154ea0c91) [aarch64-linux] $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j3'" exit with 0. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr --debug -j' TESTS='-j3' BASERUBY = /usr/local/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -msign-return-address=all -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/aarch64-linux -I/home/opc/ruby/src/master/include -I/home/opc/ruby/src/master -I/home/opc/ruby/src/master/prism -I/home/opc/ruby/src/master/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie SOLIBS = -lz -lrt -lrt -ldl -lcrypt -lm -lpthread LANG = en_US.UTF-8 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=/home/opc/ruby/build/master/yjit/target/release/' /home/opc/ruby/src/master/yjit/src/lib.rs gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10.1.0.1) Copyright (C) 2018 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 '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/home/opc/ruby/build/master' making srcs under enc make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for '/home/opc/ruby/src/master/enc/trans'. make[1]: Leaving directory '/home/opc/ruby/build/master' making encs make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/home/opc/ruby/build/master' make[2]: Entering directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/coverage' make[2]: Entering directory '/home/opc/ruby/build/master/ext/date' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/date' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest' make[2]: Entering directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/digest/sha2' make[2]: Entering directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/fiddle' make[2]: Entering directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/io/console' make[2]: Entering directory '/home/opc/ruby/build/master/ext/json' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/json' make[2]: Entering directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/monitor' make[2]: Entering directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/objspace' make[2]: Entering directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/openssl' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pathname' make[2]: Entering directory '/home/opc/ruby/build/master/ext/psych' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/psych' make[2]: Entering directory '/home/opc/ruby/build/master/ext/pty' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/pty' make[2]: Entering directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/ripper' make[2]: Entering directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/rubyvm' make[2]: Entering directory '/home/opc/ruby/build/master/ext/socket' make[2]: Leaving directory '/home/opc/ruby/build/master/ext/socket' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/bigdecimal-3.1.6/ext/bigdecimal' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/debug-1.9.1/ext/debug' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/rbs-3.4.4/ext/rbs_extension' make[2]: Entering directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/home/opc/ruby/build/master/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/home/opc/ruby/build/master' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/home/opc/ruby/build/master' make[1]: Leaving directory '/home/opc/ruby/build/master' make[1]: Entering directory '/home/opc/ruby/build/master' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/home/opc/ruby/build/master' $ /home/opc/ruby/build/master/miniruby -I/home/opc/ruby/src/master/lib /home/opc/ruby/src/master/tool/runruby.rb --archdir=/home/opc/ruby/build/master --extout=.ext -- /home/opc/ruby/src/master/spec/mspec/bin/mspec-run -B /home/opc/ruby/src/master/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubyspec_temp.20240223-762264-mmzj4f/1-mspec-multi-0 $ /home/opc/ruby/build/master/miniruby -I/home/opc/ruby/src/master/lib /home/opc/ruby/src/master/tool/runruby.rb --archdir=/home/opc/ruby/build/master --extout=.ext -- /home/opc/ruby/src/master/spec/mspec/bin/mspec-run -B /home/opc/ruby/src/master/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubyspec_temp.20240223-762264-mmzj4f/2-mspec-multi-1 $ /home/opc/ruby/build/master/miniruby -I/home/opc/ruby/src/master/lib /home/opc/ruby/src/master/tool/runruby.rb --archdir=/home/opc/ruby/build/master --extout=.ext -- /home/opc/ruby/src/master/spec/mspec/bin/mspec-run -B /home/opc/ruby/src/master/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubyspec_temp.20240223-762264-mmzj4f/3-mspec-multi-2 ruby 3.4.0dev (2024-02-23T03:42:44Z master a154ea0c91) [aarch64-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 ................................................................... Finished in 29.660166 seconds 3424 files, 32495 examples, 184071 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug -j' TESTS='-j3'" exit with 0.