# Logfile created on 2024-07-12 02:02:29 +0000 by logger.rb/v1.5.3 #<BuildRuby:0x00007f6518a5fdc8 @REPOSITORY="https://github.com/ruby/ruby.git", @REPOSITORY_TYPE=:git, @git_branch=nil, @git_worktree=nil, @svn_revision=nil, @SRC_DIR="/tmp/ruby/src", @BUILD_DIR="/tmp/ruby/build", @INSTALL_DIR="/tmp/ruby/install", @TARGET_NAME="trunk-repeat20-asserts", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-repeat20-asserts", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-repeat20-asserts", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-repeat20-asserts", @configure_opts=["--enable-shared"], @build_opts="DEFS=\"-DRUBY_DEBUG=1\"", @btest_opts="-j4", @test_opts="TESTS=--repeat-count=20", @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=208000, @logfile="/home/ko1/ruby/logs/brlog.trunk-repeat20-asserts.20240712-020229", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x00007f6518a81bd0 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007f6518a81928 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x00007f651899a5f0 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-repeat20-asserts.20240712-020229", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-repeat20-asserts.20240712-020229>, @binmode=false, @mon_data=#<Monitor:0x00007f6518a81630>, @mon_data_owner_object_id=860>>> $$$[beg] make update-download DEFS="-DRUBY_DEBUG=1" tool/config.guess already exists tool/config.sub already exists Update power_assert to 84e85124c5014a139af39161d484156cfe87a9ed echo 84e85124c5014a139af39161d484156cfe87a9ed | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision unchanged Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-repeat20-asserts/gems/power_assert-2.0.3.gem Successfully built RubyGem Name: power_assert Version: 2.0.4dev File: power_assert-2.0.4dev.gem Update typeprof to b19a6416da3a05d57fadd6ffdadb382b6d236ca5 echo b19a6416da3a05d57fadd6ffdadb382b6d236ca5 | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision unchanged $$$[end] "make update-download DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make update-src DEFS="-DRUBY_DEBUG=1" From https://github.com/ruby/ruby e1a034c..fa6bf1d master -> origin/master Updating e1a034c..fa6bf1d Fast-forward .github/workflows/compilers.yml | 12 - .github/workflows/ubuntu.yml | 11 +- bootstraptest/test_ractor.rb | 14 + common.mk | 4 +- doc/yjit/yjit.md | 8 +- doc/yjit/yjit_hacking.md | 75 - ext/-test-/bug-14834/{bug-14384.c => bug-14834.c} | 2 +- ext/-test-/bug-14834/depend | 320 +-- gc.c | 138 +- gc_impl.c => gc/default.c | 69 +- include/ruby/internal/xmalloc.h | 104 - lib/error_highlight/base.rb | 114 +- lib/logger.rb | 9 +- lib/logger/log_device.rb | 9 +- lib/prism/desugar_compiler.rb | 185 +- lib/prism/node_ext.rb | 38 +- lib/prism/parse_result.rb | 21 +- lib/prism/parse_result/errors.rb | 65 + lib/prism/parse_result/newlines.rb | 56 +- lib/prism/prism.gemspec | 2 + lib/prism/translation/ruby_parser.rb | 40 +- prism/config.yml | 149 +- prism/parser.h | 13 +- prism/prism.c | 553 +++-- prism/templates/ext/prism/api_node.c.erb | 23 +- prism/templates/include/prism/ast.h.erb | 24 +- prism/templates/lib/prism/dot_visitor.rb.erb | 8 +- prism/templates/lib/prism/dsl.rb.erb | 126 +- prism/templates/lib/prism/inspect_visitor.rb.erb | 13 +- prism/templates/lib/prism/node.rb.erb | 149 +- prism/templates/lib/prism/reflection.rb.erb | 7 +- prism/templates/lib/prism/serialize.rb.erb | 22 +- prism/templates/src/diagnostic.c.erb | 1 + prism/templates/src/node.c.erb | 13 +- prism/templates/src/prettyprint.c.erb | 13 +- prism/templates/src/serialize.c.erb | 4 +- prism/templates/template.rb | 45 +- prism/util/pm_newline_list.c | 29 + prism/util/pm_newline_list.h | 11 + prism_compile.c | 256 ++- template/Makefile.in | 5 + test/error_highlight/test_error_highlight.rb | 37 +- test/logger/test_logger.rb | 9 + test/net/http/test_https_proxy.rb | 16 +- test/prism/errors/1_2_3.txt | 11 + ...global_variable_with_global_number_variable.txt | 3 + ...ng_global_variable_with_non_global_variable.txt | 3 + ...ng_non_global_variable_with_global_variable.txt | 3 + test/prism/errors/alnum_delimiters.txt | 3 + test/prism/errors/alnum_delimiters_2.txt | 3 + test/prism/errors/alnum_delimiters_3.txt | 3 + test/prism/errors/alnum_delimiters_4.txt | 3 + test/prism/errors/alnum_delimiters_5.txt | 3 + test/prism/errors/alnum_delimiters_6.txt | 3 + test/prism/errors/alnum_delimiters_7.txt | 3 + test/prism/errors/alnum_delimiters_8.txt | 3 + test/prism/errors/alnum_delimiters_9.txt | 3 + test/prism/errors/argument_after_ellipsis.txt | 3 + ...t_forwarding_only_effects_its_own_internals.txt | 3 + ...nt_forwarding_when_parent_is_not_forwarding.txt | 3 + test/prism/errors/arguments_after_block.txt | 3 + .../errors/arguments_binding_power_for_and.txt | 5 + test/prism/errors/assign_to_numbered_parameter.txt | 11 + test/prism/errors/bad_arguments.txt | 6 + test/prism/errors/begin_at_toplevel.txt | 3 + .../errors/binary_range_with_left_unary_range.txt | 7 + test/prism/errors/block_arg_and_block.txt | 3 + ...ck_beginning_with_brace_and_ending_with_end.txt | 6 + test/prism/errors/break_1.txt | 4 + test/prism/errors/break_1_2_3.txt | 8 + test/prism/errors/call_with_block_and_write.txt | 4 + .../errors/call_with_block_operator_write.txt | 4 + test/prism/errors/call_with_block_or_write.txt | 4 + ...not_assign_to_a_reserved_numbered_parameter.txt | 14 + test/prism/errors/case_without_clauses.txt | 4 + ..._without_when_clauses_errors_on_else_clause.txt | 5 + test/prism/errors/check_value_expression.txt | 20 + .../errors/class_definition_in_method_body.txt | 3 + .../errors/class_definition_in_method_defs.txt | 7 + test/prism/errors/class_name.txt | 3 + test/prism/errors/command_call_in.txt | 7 + test/prism/errors/command_calls.txt | 3 + test/prism/errors/command_calls_10.txt | 3 + test/prism/errors/command_calls_11.txt | 3 + test/prism/errors/command_calls_12.txt | 3 + test/prism/errors/command_calls_13.txt | 3 + test/prism/errors/command_calls_14.txt | 3 + test/prism/errors/command_calls_15.txt | 3 + test/prism/errors/command_calls_16.txt | 3 + test/prism/errors/command_calls_17.txt | 5 + test/prism/errors/command_calls_18.txt | 3 + test/prism/errors/command_calls_19.txt | 3 + test/prism/errors/command_calls_2.txt | 6 + test/prism/errors/command_calls_20.txt | 3 + test/prism/errors/command_calls_21.txt | 5 + test/prism/errors/command_calls_22.txt | 3 + test/prism/errors/command_calls_23.txt | 3 + test/prism/errors/command_calls_24.txt | 5 + test/prism/errors/command_calls_25.txt | 8 + test/prism/errors/command_calls_26.txt | 3 + test/prism/errors/command_calls_27.txt | 3 + test/prism/errors/command_calls_28.txt | 3 + test/prism/errors/command_calls_29.txt | 3 + test/prism/errors/command_calls_3.txt | 3 + test/prism/errors/command_calls_30.txt | 3 + test/prism/errors/command_calls_4.txt | 3 + test/prism/errors/command_calls_5.txt | 3 + test/prism/errors/command_calls_6.txt | 6 + test/prism/errors/command_calls_7.txt | 6 + test/prism/errors/command_calls_8.txt | 6 + test/prism/errors/command_calls_9.txt | 6 + test/prism/errors/conditional_predicate_closed.txt | 6 + .../prism/errors/constant_assignment_in_method.txt | 3 + .../constant_path_with_invalid_token_after.txt | 4 + .../errors/content_after_unterminated_heredoc.txt | 4 + .../errors/cr_without_lf_in_percent_expression.txt | 3 + .../errors/def_with_empty_expression_receiver.txt | 3 + ..._with_expression_receiver_and_no_identifier.txt | 4 + .../def_with_multiple_statements_receiver.txt | 10 + test/prism/errors/defining_numbered_parameter.txt | 3 + .../prism/errors/defining_numbered_parameter_2.txt | 3 + ...a_f_and_A_F_in_u_Unicode_character_notation.txt | 4 + .../do_not_allow_forward_arguments_in_blocks.txt | 3 + ..._allow_forward_arguments_in_lambda_literals.txt | 3 + ...imal_digits_in_u_Unicode_character_notation.txt | 3 + ...le_codepoints_in_a_single_character_literal.txt | 3 + ..._allow_trailing_commas_in_lambda_parameters.txt | 3 + ..._allow_trailing_commas_in_method_parameters.txt | 3 + .../errors/dont_allow_return_inside_class_body.txt | 3 + .../dont_allow_return_inside_module_body.txt | 3 + ...ont_allow_setting_to_back_and_nth_reference.txt | 7 + test/prism/errors/double_arguments_forwarding.txt | 4 + .../errors/double_scope_numbered_parameters.txt | 3 + .../double_splat_followed_by_splat_argument.txt | 3 + test/prism/errors/duplicate_pattern_capture.txt | 17 + test/prism/errors/duplicate_pattern_hash_key.txt | 4 + test/prism/errors/duplicate_pattern_hash_key_2.txt | 3 + test/prism/errors/duplicated_parameter_names.txt | 3 + test/prism/errors/duplicated_parameter_names_2.txt | 3 + test/prism/errors/duplicated_parameter_names_3.txt | 3 + test/prism/errors/duplicated_parameter_names_4.txt | 3 + test/prism/errors/duplicated_parameter_names_5.txt | 3 + test/prism/errors/ellipsis_in_no_paren_call.txt | 3 + test/prism/errors/for_loops_index_missing.txt | 5 + test/prism/errors/for_loops_only_end.txt | 5 + .../errors/forwarding_arg_after_keyword_rest.txt | 3 + test/prism/errors/forwarding_arg_and_block.txt | 3 + .../errors/incomplete_instance_var_string.txt | 4 + .../errors/index_call_with_block_and_write.txt | 5 + .../index_call_with_block_operator_write.txt | 5 + .../errors/index_call_with_block_or_write.txt | 5 + ...ular_expression_with_unknown_regexp_options.txt | 3 + .../prism/errors/invalid_global_variable_write.txt | 4 + test/prism/errors/invalid_hex_escape.txt | 3 + test/prism/errors/invalid_multi_target.txt | 3 + test/prism/errors/invalid_multi_target_10.txt | 3 + test/prism/errors/invalid_multi_target_11.txt | 3 + test/prism/errors/invalid_multi_target_12.txt | 3 + test/prism/errors/invalid_multi_target_13.txt | 3 + test/prism/errors/invalid_multi_target_14.txt | 3 + test/prism/errors/invalid_multi_target_15.txt | 3 + test/prism/errors/invalid_multi_target_16.txt | 3 + test/prism/errors/invalid_multi_target_17.txt | 3 + test/prism/errors/invalid_multi_target_18.txt | 3 + test/prism/errors/invalid_multi_target_19.txt | 3 + test/prism/errors/invalid_multi_target_2.txt | 3 + test/prism/errors/invalid_multi_target_20.txt | 3 + test/prism/errors/invalid_multi_target_3.txt | 3 + test/prism/errors/invalid_multi_target_4.txt | 3 + test/prism/errors/invalid_multi_target_5.txt | 3 + test/prism/errors/invalid_multi_target_6.txt | 3 + test/prism/errors/invalid_multi_target_7.txt | 3 + test/prism/errors/invalid_multi_target_8.txt | 4 + test/prism/errors/invalid_multi_target_9.txt | 4 + test/prism/errors/invalid_number_underscores.txt | 3 + .../prism/errors/invalid_number_underscores_10.txt | 3 + .../prism/errors/invalid_number_underscores_11.txt | 3 + .../prism/errors/invalid_number_underscores_12.txt | 3 + test/prism/errors/invalid_number_underscores_2.txt | 3 + test/prism/errors/invalid_number_underscores_3.txt | 3 + test/prism/errors/invalid_number_underscores_4.txt | 3 + test/prism/errors/invalid_number_underscores_5.txt | 3 + test/prism/errors/invalid_number_underscores_6.txt | 3 + test/prism/errors/invalid_number_underscores_7.txt | 3 + test/prism/errors/invalid_number_underscores_8.txt | 3 + test/prism/errors/invalid_number_underscores_9.txt | 3 + test/prism/errors/invalid_operator_write_dot.txt | 3 + test/prism/errors/invalid_operator_write_fcall.txt | 3 + test/prism/errors/it_with_ordinary_parameter.txt | 3 + ...words_parameters_before_required_parameters.txt | 4 + test/prism/errors/loop_conditional_is_closed.txt | 4 + test/prism/errors/match_plus.txt | 7 + ...ethod_parameters_after_arguments_forwarding.txt | 4 + .../prism/errors/method_parameters_after_block.txt | 4 + ...method_with_arguments_after_anonymous_block.txt | 4 + .../errors/missing_terminator_in_parentheses.txt | 3 + .../errors/module_definition_in_method_body.txt | 3 + ...dule_definition_in_method_body_within_block.txt | 7 + .../errors/module_definition_in_method_defs.txt | 7 + test/prism/errors/module_name_recoverable.txt | 4 + .../errors/multiple_error_in_parameters_order.txt | 5 + test/prism/errors/next_1.txt | 4 + test/prism/errors/next_1_2_3.txt | 8 + test/prism/errors/non_assoc_equality.txt | 19 + test/prism/errors/non_assoc_range.txt | 4 + .../numbered_parameters_in_block_arguments.txt | 3 + ...tional_block_parameters_with_unary_operator.txt | 3 + ...onal_block_parameters_with_unary_operator_2.txt | 3 + ...onal_block_parameters_with_unary_operator_3.txt | 3 + ...onal_block_parameters_with_unary_operator_4.txt | 3 + ...eter_name_ending_with_bang_or_question_mark.txt | 4 + test/prism/errors/pre_execution_context.txt | 4 + test/prism/errors/pre_execution_missing_brace.txt | 3 + test/prism/errors/range_and_bin_op.txt | 4 + test/prism/errors/range_and_bin_op_2.txt | 4 + test/prism/errors/range_and_bin_op_3.txt | 3 + test/prism/errors/range_and_bin_op_4.txt | 4 + test/prism/errors/range_and_bin_op_5.txt | 5 + test/prism/errors/range_and_bin_op_6.txt | 3 + test/prism/errors/range_and_bin_op_7.txt | 3 + test/prism/errors/range_and_bin_op_8.txt | 4 + .../rational_number_with_exponential_portion.txt | 4 + ...ular_expression_with_unknown_regexp_options.txt | 3 + ...eated_parameter_name_in_destructured_params.txt | 3 + ...words_parameters_before_required_parameters.txt | 4 + test/prism/errors/return_1.txt | 3 + test/prism/errors/return_1_2_3.txt | 7 + ...rning_to_optional_parameters_multiple_times.txt | 4 + .../semicolon_after_inheritance_operator.txt | 3 + ..._be_defined_in_an_endless_method_definition.txt | 3 + test/prism/errors/shadow_args_in_block.txt | 3 + test/prism/errors/shadow_args_in_lambda.txt | 5 + .../prism/errors/singleton_method_for_literals.txt | 39 + .../splat_argument_after_keyword_argument.txt | 3 + test/prism/errors/statement_at_non_statement.txt | 9 + test/prism/errors/statement_operators.txt | 25 + .../errors/switching_to_named_arguments_twice.txt | 5 + .../switching_to_optional_arguments_twice.txt | 5 + test/prism/errors/symbol_in_hash.txt | 3 + test/prism/errors/symbol_in_keyword_parameter.txt | 3 + test/prism/errors/targeting_numbered_parameter.txt | 3 + ...constant_starting_with_downcased_identifier.txt | 4 + ...op_level_constant_with_downcased_identifier.txt | 4 + test/prism/errors/trailing_comma_in_calls.txt | 3 + test/prism/errors/unexpected_block.txt | 3 + test/prism/errors/unterminated_W_list.txt | 3 + .../errors/unterminated_argument_expression.txt | 5 + test/prism/errors/unterminated_embdoc.txt | 3 + test/prism/errors/unterminated_embdoc_2.txt | 3 + test/prism/errors/unterminated_empty_string.txt | 3 + test/prism/errors/unterminated_global_variable.txt | 3 + .../errors/unterminated_global_variable_2.txt | 3 + test/prism/errors/unterminated_i_list.txt | 3 + .../errors/unterminated_interpolated_string.txt | 3 + .../errors/unterminated_interpolated_symbol.txt | 3 + .../unterminated_parenthesized_expression.txt | 4 + .../errors/unterminated_regular_expression.txt | 3 + ...nterminated_regular_expression_with_heredoc.txt | 4 + test/prism/errors/unterminated_s_symbol.txt | 3 + test/prism/errors/unterminated_string.txt | 3 + ...d_unicode_brackets_should_be_a_syntax_error.txt | 3 + test/prism/errors/unterminated_xstring.txt | 3 + .../errors/void_value_expression_in_arguments.txt | 17 + .../errors/void_value_expression_in_array.txt | 15 + .../errors/void_value_expression_in_assignment.txt | 9 + .../void_value_expression_in_begin_statement.txt | 21 + .../void_value_expression_in_binary_call.txt | 11 + .../prism/errors/void_value_expression_in_call.txt | 11 + .../void_value_expression_in_constant_path.txt | 5 + test/prism/errors/void_value_expression_in_def.txt | 10 + .../errors/void_value_expression_in_expression.txt | 19 + .../prism/errors/void_value_expression_in_hash.txt | 9 + .../errors/void_value_expression_in_modifier.txt | 13 + .../errors/void_value_expression_in_statement.txt | 26 + .../errors/void_value_expression_in_unary_call.txt | 5 + test/prism/errors/while_endless_method.txt | 5 + test/prism/errors/writing_numbered_parameter.txt | 3 + test/prism/errors_test.rb | 2284 +------------------- test/prism/fixtures/patterns.txt | 3 + test/prism/newline_test.rb | 3 +- test/prism/result/breadth_first_search_test.rb | 18 + test/prism/result/integer_base_flags_test.rb | 4 +- test/prism/result/node_id_test.rb | 27 + test/prism/result/warnings_test.rb | 48 +- test/prism/snapshots/alias.txt | 63 +- test/prism/snapshots/arithmetic.txt | 22 +- test/prism/snapshots/arrays.txt | 251 ++- test/prism/snapshots/begin_ensure.txt | 59 +- test/prism/snapshots/begin_rescue.txt | 159 +- test/prism/snapshots/blocks.txt | 117 +- test/prism/snapshots/boolean_operators.txt | 5 + test/prism/snapshots/booleans.txt | 4 + test/prism/snapshots/break.txt | 118 +- test/prism/snapshots/case.txt | 113 +- test/prism/snapshots/classes.txt | 71 +- test/prism/snapshots/command_method_call.txt | 128 +- test/prism/snapshots/comments.txt | 20 +- test/prism/snapshots/constants.txt | 273 ++- test/prism/snapshots/dash_heredocs.txt | 57 +- test/prism/snapshots/defined.txt | 19 +- test/prism/snapshots/dos_endings.txt | 24 +- test/prism/snapshots/dstring.txt | 26 +- test/prism/snapshots/dsym_str.txt | 4 +- test/prism/snapshots/embdoc_no_newline_at_end.txt | 2 + test/prism/snapshots/emoji_method_calls.txt | 6 +- test/prism/snapshots/endless_methods.txt | 20 +- .../snapshots/endless_range_in_conditional.txt | 19 +- test/prism/snapshots/for.txt | 67 +- test/prism/snapshots/global_variables.txt | 72 +- test/prism/snapshots/hashes.txt | 68 +- test/prism/snapshots/heredoc.txt | 4 +- .../snapshots/heredoc_with_carriage_returns.txt | 4 +- test/prism/snapshots/heredoc_with_comment.txt | 4 +- .../heredoc_with_escaped_newline_at_start.txt | 10 +- .../snapshots/heredoc_with_trailing_newline.txt | 4 +- .../snapshots/heredocs_leading_whitespace.txt | 22 +- test/prism/snapshots/heredocs_nested.txt | 30 +- .../snapshots/heredocs_with_ignored_newlines.txt | 24 +- ...eredocs_with_ignored_newlines_and_non_empty.txt | 4 +- test/prism/snapshots/if.txt | 114 +- test/prism/snapshots/indented_file_end.txt | 3 + test/prism/snapshots/integer_operations.txt | 196 +- test/prism/snapshots/keyword_method_names.txt | 26 +- test/prism/snapshots/keywords.txt | 16 +- test/prism/snapshots/lambda.txt | 23 +- test/prism/snapshots/method_calls.txt | 428 ++-- test/prism/snapshots/methods.txt | 289 ++- test/prism/snapshots/modules.txt | 36 +- test/prism/snapshots/multi_write.txt | 34 +- test/prism/snapshots/newline_terminated.txt | 36 +- test/prism/snapshots/next.txt | 99 +- test/prism/snapshots/nils.txt | 13 +- test/prism/snapshots/non_alphanumeric_methods.txt | 44 +- test/prism/snapshots/not.txt | 23 +- test/prism/snapshots/numbers.txt | 78 +- test/prism/snapshots/patterns.txt | 915 ++++++-- test/prism/snapshots/procs.txt | 60 +- .../prism/snapshots/range_begin_open_exclusive.txt | 6 +- .../prism/snapshots/range_begin_open_inclusive.txt | 6 +- test/prism/snapshots/range_end_open_exclusive.txt | 6 +- test/prism/snapshots/range_end_open_inclusive.txt | 6 +- test/prism/snapshots/ranges.txt | 175 +- test/prism/snapshots/regex.txt | 97 +- test/prism/snapshots/regex_char_width.txt | 11 +- test/prism/snapshots/repeat_parameters.txt | 44 +- test/prism/snapshots/rescue.txt | 80 +- test/prism/snapshots/return.txt | 70 +- test/prism/snapshots/seattlerb/BEGIN.txt | 6 +- .../snapshots/seattlerb/TestRubyParserShared.txt | 89 +- test/prism/snapshots/seattlerb/__ENCODING__.txt | 3 + .../snapshots/seattlerb/alias_gvar_backref.txt | 5 + test/prism/snapshots/seattlerb/alias_resword.txt | 7 +- test/prism/snapshots/seattlerb/and_multi.txt | 7 + .../prism/snapshots/seattlerb/aref_args_assocs.txt | 9 +- .../snapshots/seattlerb/aref_args_lit_assocs.txt | 11 +- test/prism/snapshots/seattlerb/args_kw_block.txt | 6 +- .../snapshots/seattlerb/array_line_breaks.txt | 6 +- .../seattlerb/array_lits_trailing_calls.txt | 10 +- test/prism/snapshots/seattlerb/assoc__bare.txt | 7 +- test/prism/snapshots/seattlerb/assoc_label.txt | 9 +- .../snapshots/seattlerb/attr_asgn_colon_id.txt | 7 +- .../snapshots/seattlerb/attrasgn_array_arg.txt | 12 +- .../snapshots/seattlerb/attrasgn_array_lhs.txt | 14 +- .../seattlerb/attrasgn_primary_dot_constant.txt | 6 +- .../seattlerb/backticks_interpolation_line.txt | 7 +- test/prism/snapshots/seattlerb/bang_eq.txt | 8 +- test/prism/snapshots/seattlerb/bdot2.txt | 10 +- test/prism/snapshots/seattlerb/bdot3.txt | 10 +- .../snapshots/seattlerb/begin_ensure_no_bodies.txt | 4 + .../seattlerb/begin_rescue_else_ensure_bodies.txt | 18 +- .../begin_rescue_else_ensure_no_bodies.txt | 6 + .../seattlerb/begin_rescue_ensure_no_bodies.txt | 5 + test/prism/snapshots/seattlerb/block_arg__bare.txt | 4 + .../snapshots/seattlerb/block_arg_kwsplat.txt | 7 +- .../seattlerb/block_arg_opt_arg_block.txt | 9 +- .../snapshots/seattlerb/block_arg_opt_splat.txt | 9 +- .../block_arg_opt_splat_arg_block_omfg.txt | 9 +- .../snapshots/seattlerb/block_arg_optional.txt | 9 +- test/prism/snapshots/seattlerb/block_arg_scope.txt | 7 +- .../prism/snapshots/seattlerb/block_arg_scope2.txt | 7 +- .../snapshots/seattlerb/block_arg_splat_arg.txt | 7 +- .../snapshots/seattlerb/block_args_kwargs.txt | 9 +- .../snapshots/seattlerb/block_args_no_kwargs.txt | 8 +- test/prism/snapshots/seattlerb/block_args_opt1.txt | 14 +- test/prism/snapshots/seattlerb/block_args_opt2.txt | 11 +- .../snapshots/seattlerb/block_args_opt2_2.txt | 17 +- test/prism/snapshots/seattlerb/block_args_opt3.txt | 18 +- .../seattlerb/block_call_defn_call_block_call.txt | 12 +- .../seattlerb/block_call_dot_op2_brace_block.txt | 14 +- .../block_call_dot_op2_cmd_args_do_block.txt | 14 +- .../seattlerb/block_call_operation_colon.txt | 5 +- .../seattlerb/block_call_operation_dot.txt | 5 +- .../seattlerb/block_call_paren_call_block_call.txt | 11 +- .../seattlerb/block_command_operation_colon.txt | 9 +- .../seattlerb/block_command_operation_dot.txt | 9 +- .../seattlerb/block_decomp_anon_splat_arg.txt | 9 +- .../snapshots/seattlerb/block_decomp_arg_splat.txt | 9 +- .../seattlerb/block_decomp_arg_splat_arg.txt | 9 +- .../snapshots/seattlerb/block_decomp_splat.txt | 9 +- test/prism/snapshots/seattlerb/block_kw.txt | 9 +- .../snapshots/seattlerb/block_kw__required.txt | 7 +- .../prism/snapshots/seattlerb/block_kwarg_lvar.txt | 11 +- .../seattlerb/block_kwarg_lvar_multiple.txt | 13 +- test/prism/snapshots/seattlerb/block_opt_arg.txt | 9 +- test/prism/snapshots/seattlerb/block_opt_splat.txt | 9 +- .../seattlerb/block_opt_splat_arg_block_omfg.txt | 9 +- test/prism/snapshots/seattlerb/block_optarg.txt | 9 +- .../snapshots/seattlerb/block_paren_splat.txt | 9 +- .../prism/snapshots/seattlerb/block_reg_optarg.txt | 9 +- test/prism/snapshots/seattlerb/block_return.txt | 7 +- test/prism/snapshots/seattlerb/block_scope.txt | 6 +- test/prism/snapshots/seattlerb/block_splat_reg.txt | 7 +- test/prism/snapshots/seattlerb/bug169.txt | 6 +- test/prism/snapshots/seattlerb/bug179.txt | 6 +- test/prism/snapshots/seattlerb/bug190.txt | 4 +- test/prism/snapshots/seattlerb/bug191.txt | 18 +- test/prism/snapshots/seattlerb/bug202.txt | 8 +- test/prism/snapshots/seattlerb/bug236.txt | 13 +- test/prism/snapshots/seattlerb/bug290.txt | 6 +- test/prism/snapshots/seattlerb/bug_187.txt | 9 +- test/prism/snapshots/seattlerb/bug_215.txt | 5 +- test/prism/snapshots/seattlerb/bug_249.txt | 15 +- test/prism/snapshots/seattlerb/bug_and.txt | 9 +- test/prism/snapshots/seattlerb/bug_args__19.txt | 11 +- test/prism/snapshots/seattlerb/bug_args_masgn.txt | 8 +- test/prism/snapshots/seattlerb/bug_args_masgn2.txt | 9 +- .../seattlerb/bug_args_masgn_outer_parens__19.txt | 9 +- .../seattlerb/bug_call_arglist_parens.txt | 30 +- .../snapshots/seattlerb/bug_case_when_regexp.txt | 8 +- test/prism/snapshots/seattlerb/bug_comma.txt | 3 + test/prism/snapshots/seattlerb/bug_cond_pct.txt | 6 +- test/prism/snapshots/seattlerb/bug_hash_args.txt | 10 +- .../seattlerb/bug_hash_args_trailing_comma.txt | 10 +- .../snapshots/seattlerb/bug_hash_interp_array.txt | 8 +- test/prism/snapshots/seattlerb/bug_masgn_right.txt | 8 +- test/prism/snapshots/seattlerb/bug_not_parens.txt | 4 +- .../snapshots/seattlerb/bug_op_asgn_rescue.txt | 5 + test/prism/snapshots/seattlerb/call_and.txt | 8 +- test/prism/snapshots/seattlerb/call_arg_assoc.txt | 11 +- .../snapshots/seattlerb/call_arg_assoc_kwsplat.txt | 14 +- .../prism/snapshots/seattlerb/call_arg_kwsplat.txt | 7 +- .../snapshots/seattlerb/call_args_assoc_quoted.txt | 24 +- .../seattlerb/call_args_assoc_trailing_comma.txt | 11 +- .../snapshots/seattlerb/call_args_command.txt | 6 +- test/prism/snapshots/seattlerb/call_array_arg.txt | 12 +- .../snapshots/seattlerb/call_array_block_call.txt | 6 +- .../seattlerb/call_array_lambda_block_call.txt | 7 +- .../seattlerb/call_array_lit_inline_hash.txt | 11 +- test/prism/snapshots/seattlerb/call_assoc.txt | 9 +- test/prism/snapshots/seattlerb/call_assoc_new.txt | 9 +- .../seattlerb/call_assoc_new_if_multiline.txt | 17 +- .../seattlerb/call_assoc_trailing_comma.txt | 9 +- .../snapshots/seattlerb/call_bang_command_call.txt | 6 +- .../snapshots/seattlerb/call_bang_squiggle.txt | 8 +- .../seattlerb/call_begin_call_block_call.txt | 9 +- .../snapshots/seattlerb/call_block_arg_named.txt | 5 +- test/prism/snapshots/seattlerb/call_carat.txt | 8 +- test/prism/snapshots/seattlerb/call_colon2.txt | 5 +- .../snapshots/seattlerb/call_colon_parens.txt | 6 +- test/prism/snapshots/seattlerb/call_div.txt | 8 +- test/prism/snapshots/seattlerb/call_dot_parens.txt | 6 +- test/prism/snapshots/seattlerb/call_env.txt | 4 +- test/prism/snapshots/seattlerb/call_eq3.txt | 8 +- test/prism/snapshots/seattlerb/call_gt.txt | 8 +- test/prism/snapshots/seattlerb/call_kwsplat.txt | 7 +- .../snapshots/seattlerb/call_leading_dots.txt | 4 +- .../seattlerb/call_leading_dots_comment.txt | 4 +- test/prism/snapshots/seattlerb/call_lt.txt | 8 +- test/prism/snapshots/seattlerb/call_lte.txt | 8 +- test/prism/snapshots/seattlerb/call_not.txt | 6 +- test/prism/snapshots/seattlerb/call_pipe.txt | 8 +- test/prism/snapshots/seattlerb/call_rshift.txt | 8 +- .../snapshots/seattlerb/call_self_brackets.txt | 7 +- test/prism/snapshots/seattlerb/call_spaceship.txt | 8 +- .../seattlerb/call_stabby_do_end_with_block.txt | 12 +- .../seattlerb/call_stabby_with_braces_block.txt | 12 +- test/prism/snapshots/seattlerb/call_star.txt | 8 +- test/prism/snapshots/seattlerb/call_star2.txt | 8 +- .../snapshots/seattlerb/call_trailing_comma.txt | 6 +- .../snapshots/seattlerb/call_trailing_dots.txt | 4 +- test/prism/snapshots/seattlerb/call_unary_bang.txt | 6 +- test/prism/snapshots/seattlerb/case_in.txt | 243 ++- test/prism/snapshots/seattlerb/case_in_31.txt | 14 +- test/prism/snapshots/seattlerb/case_in_37.txt | 16 +- test/prism/snapshots/seattlerb/case_in_42.txt | 13 +- test/prism/snapshots/seattlerb/case_in_42_2.txt | 12 +- test/prism/snapshots/seattlerb/case_in_47.txt | 15 +- test/prism/snapshots/seattlerb/case_in_67.txt | 12 +- test/prism/snapshots/seattlerb/case_in_86.txt | 15 +- test/prism/snapshots/seattlerb/case_in_86_2.txt | 15 +- .../seattlerb/case_in_array_pat_const.txt | 12 +- .../seattlerb/case_in_array_pat_const2.txt | 13 +- .../seattlerb/case_in_array_pat_paren_assign.txt | 14 +- test/prism/snapshots/seattlerb/case_in_const.txt | 9 +- test/prism/snapshots/seattlerb/case_in_else.txt | 13 +- test/prism/snapshots/seattlerb/case_in_find.txt | 13 +- .../snapshots/seattlerb/case_in_find_array.txt | 12 +- .../prism/snapshots/seattlerb/case_in_hash_pat.txt | 16 +- .../seattlerb/case_in_hash_pat_assign.txt | 24 +- .../seattlerb/case_in_hash_pat_paren_assign.txt | 16 +- .../seattlerb/case_in_hash_pat_paren_true.txt | 14 +- .../snapshots/seattlerb/case_in_hash_pat_rest.txt | 16 +- .../seattlerb/case_in_hash_pat_rest_solo.txt | 12 +- .../seattlerb/case_in_if_unless_post_mod.txt | 21 +- .../prism/snapshots/seattlerb/case_in_multiple.txt | 17 +- test/prism/snapshots/seattlerb/case_in_or.txt | 12 +- test/prism/snapshots/seattlerb/class_comments.txt | 6 + .../prism/snapshots/seattlerb/cond_unary_minus.txt | 5 +- .../snapshots/seattlerb/const_2_op_asgn_or2.txt | 7 +- .../snapshots/seattlerb/const_3_op_asgn_or.txt | 6 +- .../snapshots/seattlerb/const_op_asgn_and1.txt | 6 +- .../snapshots/seattlerb/const_op_asgn_and2.txt | 6 +- .../prism/snapshots/seattlerb/const_op_asgn_or.txt | 7 +- .../snapshots/seattlerb/defined_eh_parens.txt | 5 +- .../snapshots/seattlerb/defn_arg_asplat_arg.txt | 4 + .../snapshots/seattlerb/defn_arg_forward_args.txt | 10 +- .../snapshots/seattlerb/defn_args_forward_args.txt | 12 +- test/prism/snapshots/seattlerb/defn_comments.txt | 3 + .../snapshots/seattlerb/defn_endless_command.txt | 8 +- .../seattlerb/defn_endless_command_rescue.txt | 9 +- .../snapshots/seattlerb/defn_forward_args.txt | 9 +- .../seattlerb/defn_forward_args__no_parens.txt | 9 +- test/prism/snapshots/seattlerb/defn_kwarg_env.txt | 9 +- .../prism/snapshots/seattlerb/defn_kwarg_kwarg.txt | 8 +- .../snapshots/seattlerb/defn_kwarg_kwsplat.txt | 6 +- .../seattlerb/defn_kwarg_kwsplat_anon.txt | 6 +- test/prism/snapshots/seattlerb/defn_kwarg_lvar.txt | 8 +- .../snapshots/seattlerb/defn_kwarg_no_parens.txt | 6 +- test/prism/snapshots/seattlerb/defn_kwarg_val.txt | 6 +- test/prism/snapshots/seattlerb/defn_no_kwargs.txt | 5 + test/prism/snapshots/seattlerb/defn_oneliner.txt | 8 +- .../snapshots/seattlerb/defn_oneliner_eq2.txt | 10 +- .../snapshots/seattlerb/defn_oneliner_noargs.txt | 6 +- .../seattlerb/defn_oneliner_noargs_parentheses.txt | 6 +- .../snapshots/seattlerb/defn_oneliner_rescue.txt | 24 +- .../snapshots/seattlerb/defn_opt_last_arg.txt | 5 + test/prism/snapshots/seattlerb/defn_opt_reg.txt | 5 + .../snapshots/seattlerb/defn_opt_splat_arg.txt | 6 +- test/prism/snapshots/seattlerb/defn_powarg.txt | 4 + .../prism/snapshots/seattlerb/defn_reg_opt_reg.txt | 6 +- test/prism/snapshots/seattlerb/defn_splat_arg.txt | 4 + test/prism/snapshots/seattlerb/defn_unary_not.txt | 5 + test/prism/snapshots/seattlerb/defns_reserved.txt | 4 + .../seattlerb/defs_as_arg_with_do_block_inside.txt | 10 +- test/prism/snapshots/seattlerb/defs_comments.txt | 4 + .../snapshots/seattlerb/defs_endless_command.txt | 8 +- .../seattlerb/defs_endless_command_rescue.txt | 9 +- test/prism/snapshots/seattlerb/defs_kwarg.txt | 7 +- test/prism/snapshots/seattlerb/defs_oneliner.txt | 9 +- .../snapshots/seattlerb/defs_oneliner_eq2.txt | 11 +- .../snapshots/seattlerb/defs_oneliner_rescue.txt | 27 +- test/prism/snapshots/seattlerb/difficult0_.txt | 10 +- .../seattlerb/difficult1_line_numbers.txt | 53 +- .../seattlerb/difficult1_line_numbers2.txt | 18 +- test/prism/snapshots/seattlerb/difficult2_.txt | 19 +- test/prism/snapshots/seattlerb/difficult3_.txt | 9 +- test/prism/snapshots/seattlerb/difficult3_2.txt | 7 +- test/prism/snapshots/seattlerb/difficult3_3.txt | 7 +- test/prism/snapshots/seattlerb/difficult3_4.txt | 9 + test/prism/snapshots/seattlerb/difficult3_5.txt | 10 +- test/prism/snapshots/seattlerb/difficult3__10.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__11.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__12.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__6.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__7.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__8.txt | 9 +- test/prism/snapshots/seattlerb/difficult3__9.txt | 9 +- .../seattlerb/difficult4__leading_dots.txt | 4 +- .../seattlerb/difficult4__leading_dots2.txt | 8 +- test/prism/snapshots/seattlerb/difficult6_.txt | 11 +- test/prism/snapshots/seattlerb/difficult6__7.txt | 12 +- test/prism/snapshots/seattlerb/difficult6__8.txt | 12 +- test/prism/snapshots/seattlerb/difficult7_.txt | 20 +- test/prism/snapshots/seattlerb/do_bug.txt | 11 +- test/prism/snapshots/seattlerb/do_lambda.txt | 4 + test/prism/snapshots/seattlerb/dot2_nil__26.txt | 4 +- test/prism/snapshots/seattlerb/dot3_nil__26.txt | 4 +- test/prism/snapshots/seattlerb/dstr_evstr.txt | 10 +- .../snapshots/seattlerb/dstr_evstr_empty_end.txt | 5 + test/prism/snapshots/seattlerb/dstr_lex_state.txt | 8 +- test/prism/snapshots/seattlerb/dstr_str.txt | 10 +- test/prism/snapshots/seattlerb/dsym_esc_to_sym.txt | 4 +- test/prism/snapshots/seattlerb/dsym_to_sym.txt | 12 +- .../snapshots/seattlerb/eq_begin_line_numbers.txt | 6 +- ...eq_begin_why_wont_people_use_their_spacebar.txt | 8 +- test/prism/snapshots/seattlerb/evstr_evstr.txt | 8 +- test/prism/snapshots/seattlerb/evstr_str.txt | 8 +- test/prism/snapshots/seattlerb/expr_not_bang.txt | 4 +- test/prism/snapshots/seattlerb/f_kw.txt | 6 +- test/prism/snapshots/seattlerb/f_kw__required.txt | 4 + test/prism/snapshots/seattlerb/flip2_env_lvar.txt | 3 + .../snapshots/seattlerb/float_with_if_modifier.txt | 6 + .../seattlerb/heredoc__backslash_dos_format.txt | 3 + .../snapshots/seattlerb/heredoc_backslash_nl.txt | 6 +- .../snapshots/seattlerb/heredoc_bad_hex_escape.txt | 3 + .../snapshots/seattlerb/heredoc_bad_oct_escape.txt | 3 + .../snapshots/seattlerb/heredoc_comma_arg.txt | 6 +- test/prism/snapshots/seattlerb/heredoc_lineno.txt | 6 +- test/prism/snapshots/seattlerb/heredoc_nested.txt | 16 +- .../prism/snapshots/seattlerb/heredoc_squiggly.txt | 11 +- ...edoc_squiggly_blank_line_plus_interpolation.txt | 9 +- .../seattlerb/heredoc_squiggly_blank_lines.txt | 11 +- .../snapshots/seattlerb/heredoc_squiggly_empty.txt | 4 +- .../seattlerb/heredoc_squiggly_interp.txt | 15 +- .../seattlerb/heredoc_squiggly_no_indent.txt | 4 +- .../snapshots/seattlerb/heredoc_squiggly_tabs.txt | 9 +- .../seattlerb/heredoc_squiggly_tabs_extra.txt | 9 +- .../heredoc_squiggly_visually_blank_lines.txt | 11 +- .../heredoc_trailing_slash_continued_call.txt | 4 +- test/prism/snapshots/seattlerb/heredoc_unicode.txt | 4 +- .../heredoc_with_carriage_return_escapes.txt | 4 +- ...eredoc_with_carriage_return_escapes_windows.txt | 4 +- .../heredoc_with_extra_carriage_horrible_mix.txt | 4 +- .../heredoc_with_extra_carriage_returns.txt | 4 +- ...heredoc_with_extra_carriage_returns_windows.txt | 4 +- ...h_interpolation_and_carriage_return_escapes.txt | 10 +- ...olation_and_carriage_return_escapes_windows.txt | 10 +- .../heredoc_with_not_global_interpolation.txt | 4 +- .../heredoc_with_only_carriage_returns.txt | 4 +- .../heredoc_with_only_carriage_returns_windows.txt | 4 +- test/prism/snapshots/seattlerb/if_elsif.txt | 8 +- test/prism/snapshots/seattlerb/if_symbol.txt | 5 +- test/prism/snapshots/seattlerb/in_expr_no_case.txt | 4 + test/prism/snapshots/seattlerb/index_0.txt | 4 +- test/prism/snapshots/seattlerb/index_0_opasgn.txt | 4 +- .../seattlerb/integer_with_if_modifier.txt | 7 +- .../interpolated_symbol_array_line_breaks.txt | 10 +- .../interpolated_word_array_line_breaks.txt | 6 +- test/prism/snapshots/seattlerb/iter_args_1.txt | 7 +- test/prism/snapshots/seattlerb/iter_args_10_1.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_10_2.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_11_1.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_11_2.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_2__19.txt | 8 +- test/prism/snapshots/seattlerb/iter_args_3.txt | 8 +- test/prism/snapshots/seattlerb/iter_args_4.txt | 7 +- test/prism/snapshots/seattlerb/iter_args_5.txt | 7 +- test/prism/snapshots/seattlerb/iter_args_6.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_7_1.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_7_2.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_8_1.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_8_2.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_9_1.txt | 9 +- test/prism/snapshots/seattlerb/iter_args_9_2.txt | 9 +- test/prism/snapshots/seattlerb/iter_kwarg.txt | 9 +- .../snapshots/seattlerb/iter_kwarg_kwsplat.txt | 9 +- test/prism/snapshots/seattlerb/label_vs_string.txt | 4 +- .../snapshots/seattlerb/lambda_do_vs_brace.txt | 16 +- .../snapshots/seattlerb/lasgn_arg_rescue_arg.txt | 8 +- .../seattlerb/lasgn_call_bracket_rescue_arg.txt | 8 +- .../seattlerb/lasgn_call_nobracket_rescue_arg.txt | 8 +- test/prism/snapshots/seattlerb/lasgn_command.txt | 5 +- test/prism/snapshots/seattlerb/lasgn_env.txt | 5 +- test/prism/snapshots/seattlerb/lasgn_ivar_env.txt | 5 +- .../seattlerb/lasgn_lasgn_command_call.txt | 6 +- .../snapshots/seattlerb/lasgn_middle_splat.txt | 4 + .../snapshots/seattlerb/magic_encoding_comment.txt | 11 +- .../snapshots/seattlerb/masgn_anon_splat_arg.txt | 5 + .../snapshots/seattlerb/masgn_arg_colon_arg.txt | 4 + test/prism/snapshots/seattlerb/masgn_arg_ident.txt | 4 + .../snapshots/seattlerb/masgn_arg_splat_arg.txt | 7 + test/prism/snapshots/seattlerb/masgn_colon2.txt | 11 +- test/prism/snapshots/seattlerb/masgn_colon3.txt | 11 +- .../snapshots/seattlerb/masgn_command_call.txt | 7 +- .../snapshots/seattlerb/masgn_double_paren.txt | 6 + test/prism/snapshots/seattlerb/masgn_lhs_splat.txt | 13 +- test/prism/snapshots/seattlerb/masgn_paren.txt | 5 + test/prism/snapshots/seattlerb/masgn_splat_arg.txt | 6 + .../snapshots/seattlerb/masgn_splat_arg_arg.txt | 7 + test/prism/snapshots/seattlerb/masgn_star.txt | 6 +- .../snapshots/seattlerb/masgn_var_star_var.txt | 6 + .../snapshots/seattlerb/messy_op_asgn_lineno.txt | 9 +- .../seattlerb/method_call_assoc_trailing_comma.txt | 9 +- .../seattlerb/method_call_trailing_comma.txt | 6 +- .../snapshots/seattlerb/mlhs_back_anonsplat.txt | 7 + test/prism/snapshots/seattlerb/mlhs_back_splat.txt | 8 + .../snapshots/seattlerb/mlhs_front_anonsplat.txt | 7 + .../prism/snapshots/seattlerb/mlhs_front_splat.txt | 8 + test/prism/snapshots/seattlerb/mlhs_keyword.txt | 6 +- .../snapshots/seattlerb/mlhs_mid_anonsplat.txt | 10 + test/prism/snapshots/seattlerb/mlhs_mid_splat.txt | 11 + test/prism/snapshots/seattlerb/mlhs_rescue.txt | 8 +- test/prism/snapshots/seattlerb/module_comments.txt | 6 + .../seattlerb/multiline_hash_declaration.txt | 20 +- .../non_interpolated_symbol_array_line_breaks.txt | 10 +- .../non_interpolated_word_array_line_breaks.txt | 6 +- .../snapshots/seattlerb/op_asgn_command_call.txt | 5 +- .../seattlerb/op_asgn_dot_ident_command_call.txt | 7 +- .../seattlerb/op_asgn_index_command_call.txt | 10 +- .../op_asgn_primary_colon_const_command_call.txt | 5 + .../op_asgn_primary_colon_identifier1.txt | 7 +- ..._asgn_primary_colon_identifier_command_call.txt | 5 +- .../op_asgn_val_dot_ident_command_call.txt | 6 +- .../snapshots/seattlerb/parse_def_special_name.txt | 3 + .../snapshots/seattlerb/parse_if_not_canonical.txt | 10 +- .../seattlerb/parse_if_not_noncanonical.txt | 10 +- .../prism/snapshots/seattlerb/parse_line_block.txt | 8 +- .../seattlerb/parse_line_block_inline_comment.txt | 8 +- ..._line_block_inline_comment_leading_newlines.txt | 8 +- .../parse_line_block_inline_multiline_comment.txt | 8 +- ...rse_line_call_ivar_arg_no_parens_line_break.txt | 5 +- .../parse_line_call_ivar_line_break_paren.txt | 5 +- .../seattlerb/parse_line_call_no_args.txt | 12 +- .../seattlerb/parse_line_defn_complex.txt | 14 +- .../seattlerb/parse_line_defn_no_parens.txt | 4 + .../seattlerb/parse_line_defn_no_parens_args.txt | 4 + test/prism/snapshots/seattlerb/parse_line_dot2.txt | 12 +- .../snapshots/seattlerb/parse_line_dot2_open.txt | 10 +- test/prism/snapshots/seattlerb/parse_line_dot3.txt | 12 +- .../snapshots/seattlerb/parse_line_dot3_open.txt | 10 +- .../seattlerb/parse_line_dstr_escaped_newline.txt | 8 +- .../seattlerb/parse_line_dstr_soft_newline.txt | 8 +- .../seattlerb/parse_line_evstr_after_break.txt | 8 +- .../snapshots/seattlerb/parse_line_hash_lit.txt | 8 +- .../snapshots/seattlerb/parse_line_heredoc.txt | 6 +- .../seattlerb/parse_line_heredoc_evstr.txt | 10 +- .../seattlerb/parse_line_heredoc_hardnewline.txt | 6 +- .../seattlerb/parse_line_heredoc_regexp_chars.txt | 6 +- .../seattlerb/parse_line_iter_call_no_parens.txt | 12 +- .../seattlerb/parse_line_iter_call_parens.txt | 12 +- .../seattlerb/parse_line_multiline_str.txt | 6 +- .../parse_line_multiline_str_literal_n.txt | 6 +- .../snapshots/seattlerb/parse_line_newlines.txt | 3 + .../snapshots/seattlerb/parse_line_op_asgn.txt | 5 +- .../snapshots/seattlerb/parse_line_postexe.txt | 6 +- .../snapshots/seattlerb/parse_line_preexe.txt | 6 +- .../snapshots/seattlerb/parse_line_rescue.txt | 14 +- .../snapshots/seattlerb/parse_line_return.txt | 11 +- .../parse_line_str_with_newline_escape.txt | 5 +- .../snapshots/seattlerb/parse_line_to_ary.txt | 7 +- .../seattlerb/parse_line_trailing_newlines.txt | 6 +- .../seattlerb/parse_opt_call_args_assocs_comma.txt | 11 +- .../seattlerb/parse_opt_call_args_lit_comma.txt | 8 +- .../snapshots/seattlerb/parse_pattern_019.txt | 14 +- .../snapshots/seattlerb/parse_pattern_044.txt | 8 + .../snapshots/seattlerb/parse_pattern_051.txt | 20 +- .../snapshots/seattlerb/parse_pattern_058.txt | 23 +- .../snapshots/seattlerb/parse_pattern_058_2.txt | 21 +- .../snapshots/seattlerb/parse_pattern_069.txt | 16 +- .../snapshots/seattlerb/parse_pattern_076.txt | 19 +- .../seattlerb/parse_until_not_canonical.txt | 7 +- .../seattlerb/parse_until_not_noncanonical.txt | 7 +- .../seattlerb/parse_while_not_canonical.txt | 7 +- .../seattlerb/parse_while_not_noncanonical.txt | 7 +- test/prism/snapshots/seattlerb/pctW_lineno.txt | 4 +- .../snapshots/seattlerb/pct_Q_backslash_nl.txt | 4 +- test/prism/snapshots/seattlerb/pct_nl.txt | 3 + .../seattlerb/pct_w_heredoc_interp_nested.txt | 10 +- test/prism/snapshots/seattlerb/pipe_semicolon.txt | 6 +- test/prism/snapshots/seattlerb/pipe_space.txt | 6 +- test/prism/snapshots/seattlerb/qWords_space.txt | 4 +- test/prism/snapshots/seattlerb/qsymbols.txt | 10 +- test/prism/snapshots/seattlerb/qsymbols_empty.txt | 4 +- .../snapshots/seattlerb/qsymbols_empty_space.txt | 4 +- test/prism/snapshots/seattlerb/qsymbols_interp.txt | 17 +- .../snapshots/seattlerb/quoted_symbol_hash_arg.txt | 8 +- .../snapshots/seattlerb/quoted_symbol_keys.txt | 8 +- test/prism/snapshots/seattlerb/qw_escape.txt | 4 +- test/prism/snapshots/seattlerb/qw_escape_term.txt | 4 +- test/prism/snapshots/seattlerb/qwords_empty.txt | 4 +- .../seattlerb/read_escape_unicode_curlies.txt | 4 +- .../snapshots/seattlerb/read_escape_unicode_h4.txt | 4 +- test/prism/snapshots/seattlerb/regexp.txt | 12 +- .../snapshots/seattlerb/regexp_esc_C_slash.txt | 4 +- test/prism/snapshots/seattlerb/regexp_esc_u.txt | 4 +- .../snapshots/seattlerb/regexp_escape_extended.txt | 4 +- .../snapshots/seattlerb/regexp_unicode_curlies.txt | 6 +- .../seattlerb/required_kwarg_no_value.txt | 4 + .../seattlerb/rescue_do_end_ensure_result.txt | 13 +- .../snapshots/seattlerb/rescue_do_end_no_raise.txt | 21 +- .../snapshots/seattlerb/rescue_do_end_raised.txt | 13 +- .../snapshots/seattlerb/rescue_do_end_rescued.txt | 21 +- test/prism/snapshots/seattlerb/rescue_in_block.txt | 10 +- test/prism/snapshots/seattlerb/rescue_parens.txt | 7 +- .../snapshots/seattlerb/return_call_assocs.txt | 51 +- test/prism/snapshots/seattlerb/rhs_asgn.txt | 6 +- test/prism/snapshots/seattlerb/ruby21_numbers.txt | 12 +- test/prism/snapshots/seattlerb/safe_attrasgn.txt | 6 +- .../snapshots/seattlerb/safe_attrasgn_constant.txt | 6 +- test/prism/snapshots/seattlerb/safe_call.txt | 4 +- .../seattlerb/safe_call_after_newline.txt | 4 +- .../snapshots/seattlerb/safe_call_dot_parens.txt | 4 +- .../snapshots/seattlerb/safe_call_newline.txt | 4 +- .../snapshots/seattlerb/safe_call_operator.txt | 6 +- .../snapshots/seattlerb/safe_call_rhs_newline.txt | 3 + test/prism/snapshots/seattlerb/safe_calls.txt | 6 +- test/prism/snapshots/seattlerb/safe_op_asgn.txt | 6 +- test/prism/snapshots/seattlerb/safe_op_asgn2.txt | 4 +- .../seattlerb/slashy_newlines_within_string.txt | 6 +- .../snapshots/seattlerb/stabby_arg_no_paren.txt | 5 + .../stabby_arg_opt_splat_arg_block_omfg.txt | 7 +- .../snapshots/seattlerb/stabby_block_iter_call.txt | 10 +- .../stabby_block_iter_call_no_target_with_arg.txt | 12 +- test/prism/snapshots/seattlerb/stabby_block_kw.txt | 7 +- .../seattlerb/stabby_block_kw__required.txt | 5 + .../snapshots/seattlerb/stabby_proc_scope.txt | 5 + test/prism/snapshots/seattlerb/str_backslashes.txt | 4 +- .../str_double_double_escaped_newline.txt | 6 +- .../seattlerb/str_double_escaped_newline.txt | 6 +- .../snapshots/seattlerb/str_double_newline.txt | 6 +- test/prism/snapshots/seattlerb/str_evstr.txt | 8 +- .../prism/snapshots/seattlerb/str_evstr_escape.txt | 10 +- .../snapshots/seattlerb/str_heredoc_interp.txt | 8 +- .../seattlerb/str_interp_ternary_or_label.txt | 14 +- .../seattlerb/str_lit_concat_bad_encodings.txt | 8 +- .../seattlerb/str_newline_hash_line_number.txt | 6 +- .../prism/snapshots/seattlerb/str_pct_Q_nested.txt | 10 +- .../snapshots/seattlerb/str_pct_nested_nested.txt | 14 +- test/prism/snapshots/seattlerb/str_pct_q.txt | 4 +- .../str_single_double_escaped_newline.txt | 6 +- .../seattlerb/str_single_escaped_newline.txt | 6 +- .../snapshots/seattlerb/str_single_newline.txt | 6 +- test/prism/snapshots/seattlerb/str_str.txt | 10 +- test/prism/snapshots/seattlerb/str_str_str.txt | 12 +- test/prism/snapshots/seattlerb/super_arg.txt | 5 +- test/prism/snapshots/seattlerb/symbol_empty.txt | 4 +- test/prism/snapshots/seattlerb/symbol_list.txt | 10 +- test/prism/snapshots/seattlerb/symbols.txt | 10 +- test/prism/snapshots/seattlerb/symbols_empty.txt | 4 +- .../snapshots/seattlerb/symbols_empty_space.txt | 4 +- test/prism/snapshots/seattlerb/symbols_interp.txt | 10 +- test/prism/snapshots/seattlerb/thingy.txt | 10 +- test/prism/snapshots/seattlerb/uminus_float.txt | 3 + test/prism/snapshots/seattlerb/unary_minus.txt | 4 +- test/prism/snapshots/seattlerb/unary_plus.txt | 4 +- .../snapshots/seattlerb/unary_plus_on_literal.txt | 6 +- test/prism/snapshots/seattlerb/unary_tilde.txt | 4 +- test/prism/snapshots/seattlerb/utf8_bom.txt | 6 +- test/prism/snapshots/seattlerb/when_splat.txt | 5 + test/prism/snapshots/seattlerb/words_interp.txt | 10 +- .../snapshots/single_method_call_with_bang.txt | 4 +- test/prism/snapshots/single_quote_heredocs.txt | 4 +- test/prism/snapshots/spanning_heredoc.txt | 87 +- test/prism/snapshots/spanning_heredoc_newlines.txt | 18 +- test/prism/snapshots/strings.txt | 130 +- test/prism/snapshots/super.txt | 42 +- test/prism/snapshots/symbols.txt | 159 +- test/prism/snapshots/ternary_operator.txt | 57 +- test/prism/snapshots/tilde_heredocs.txt | 148 +- test/prism/snapshots/undef.txt | 40 +- test/prism/snapshots/unescaping.txt | 10 +- test/prism/snapshots/unless.txt | 50 +- .../snapshots/unparser/corpus/literal/alias.txt | 10 +- .../unparser/corpus/literal/assignment.txt | 259 ++- .../snapshots/unparser/corpus/literal/block.txt | 241 ++- .../snapshots/unparser/corpus/literal/case.txt | 54 +- .../snapshots/unparser/corpus/literal/class.txt | 40 +- .../snapshots/unparser/corpus/literal/def.txt | 175 +- .../snapshots/unparser/corpus/literal/defined.txt | 18 +- .../snapshots/unparser/corpus/literal/defs.txt | 59 +- .../snapshots/unparser/corpus/literal/dstr.txt | 96 +- .../snapshots/unparser/corpus/literal/empty.txt | 2 + .../unparser/corpus/literal/empty_begin.txt | 3 + .../snapshots/unparser/corpus/literal/flipflop.txt | 44 +- .../snapshots/unparser/corpus/literal/for.txt | 29 +- .../snapshots/unparser/corpus/literal/hookexe.txt | 12 +- .../prism/snapshots/unparser/corpus/literal/if.txt | 64 +- .../snapshots/unparser/corpus/literal/kwbegin.txt | 109 +- .../snapshots/unparser/corpus/literal/lambda.txt | 23 +- .../snapshots/unparser/corpus/literal/literal.txt | 371 ++-- .../snapshots/unparser/corpus/literal/module.txt | 21 +- .../snapshots/unparser/corpus/literal/opasgn.txt | 104 +- .../snapshots/unparser/corpus/literal/pattern.txt | 140 +- .../snapshots/unparser/corpus/literal/pragma.txt | 8 +- .../snapshots/unparser/corpus/literal/range.txt | 26 +- .../snapshots/unparser/corpus/literal/rescue.txt | 8 + .../snapshots/unparser/corpus/literal/send.txt | 274 ++- .../snapshots/unparser/corpus/literal/since/27.txt | 15 +- .../snapshots/unparser/corpus/literal/since/30.txt | 28 +- .../snapshots/unparser/corpus/literal/since/31.txt | 14 +- .../snapshots/unparser/corpus/literal/since/32.txt | 26 +- .../unparser/corpus/literal/singletons.txt | 6 + .../snapshots/unparser/corpus/literal/super.txt | 35 +- .../snapshots/unparser/corpus/literal/unary.txt | 43 +- .../snapshots/unparser/corpus/literal/undef.txt | 10 +- .../unparser/corpus/literal/variables.txt | 15 +- .../snapshots/unparser/corpus/literal/while.txt | 146 +- .../snapshots/unparser/corpus/semantic/and.txt | 8 + .../snapshots/unparser/corpus/semantic/block.txt | 36 +- .../snapshots/unparser/corpus/semantic/def.txt | 12 +- .../snapshots/unparser/corpus/semantic/dstr.txt | 193 +- .../snapshots/unparser/corpus/semantic/kwbegin.txt | 55 +- .../snapshots/unparser/corpus/semantic/literal.txt | 30 +- .../snapshots/unparser/corpus/semantic/opasgn.txt | 16 +- .../snapshots/unparser/corpus/semantic/send.txt | 12 +- .../snapshots/unparser/corpus/semantic/undef.txt | 10 +- .../snapshots/unparser/corpus/semantic/while.txt | 48 +- test/prism/snapshots/until.txt | 54 +- test/prism/snapshots/variables.txt | 139 +- test/prism/snapshots/while.txt | 113 +- test/prism/snapshots/whitequark/__ENCODING__.txt | 3 + .../snapshots/whitequark/__ENCODING___legacy_.txt | 3 + test/prism/snapshots/whitequark/alias.txt | 7 +- test/prism/snapshots/whitequark/alias_gvar.txt | 8 + .../ambiuous_quoted_label_in_ternary_operator.txt | 9 +- test/prism/snapshots/whitequark/and.txt | 4 + test/prism/snapshots/whitequark/and_asgn.txt | 14 +- test/prism/snapshots/whitequark/and_or_masgn.txt | 14 + .../snapshots/whitequark/anonymous_blockarg.txt | 8 +- test/prism/snapshots/whitequark/arg.txt | 6 + .../snapshots/whitequark/arg_duplicate_ignored.txt | 6 + test/prism/snapshots/whitequark/arg_label.txt | 23 +- test/prism/snapshots/whitequark/arg_scope.txt | 8 +- test/prism/snapshots/whitequark/args.txt | 106 +- .../snapshots/whitequark/args_args_assocs.txt | 17 +- .../whitequark/args_args_assocs_comma.txt | 9 +- .../prism/snapshots/whitequark/args_args_comma.txt | 4 +- test/prism/snapshots/whitequark/args_args_star.txt | 9 +- .../snapshots/whitequark/args_assocs_comma.txt | 9 +- .../prism/snapshots/whitequark/args_block_pass.txt | 5 +- test/prism/snapshots/whitequark/args_cmd.txt | 4 +- test/prism/snapshots/whitequark/args_star.txt | 9 +- test/prism/snapshots/whitequark/array_assocs.txt | 18 +- test/prism/snapshots/whitequark/array_plain.txt | 8 +- test/prism/snapshots/whitequark/array_splat.txt | 17 +- test/prism/snapshots/whitequark/array_symbols.txt | 8 +- .../snapshots/whitequark/array_symbols_empty.txt | 6 +- .../snapshots/whitequark/array_symbols_interp.txt | 16 +- test/prism/snapshots/whitequark/array_words.txt | 4 +- .../snapshots/whitequark/array_words_empty.txt | 6 +- .../snapshots/whitequark/array_words_interp.txt | 14 +- test/prism/snapshots/whitequark/asgn_cmd.txt | 7 + test/prism/snapshots/whitequark/asgn_mrhs.txt | 9 +- test/prism/snapshots/whitequark/back_ref.txt | 3 + test/prism/snapshots/whitequark/bang.txt | 4 +- test/prism/snapshots/whitequark/bang_cmd.txt | 4 +- test/prism/snapshots/whitequark/begin_cmdarg.txt | 14 +- .../whitequark/beginless_erange_after_newline.txt | 8 +- .../whitequark/beginless_irange_after_newline.txt | 8 +- .../prism/snapshots/whitequark/beginless_range.txt | 10 +- test/prism/snapshots/whitequark/blockarg.txt | 4 + test/prism/snapshots/whitequark/blockargs.txt | 197 +- test/prism/snapshots/whitequark/bug_435.txt | 9 +- test/prism/snapshots/whitequark/bug_447.txt | 14 +- test/prism/snapshots/whitequark/bug_452.txt | 11 +- test/prism/snapshots/whitequark/bug_466.txt | 15 +- test/prism/snapshots/whitequark/bug_473.txt | 8 +- test/prism/snapshots/whitequark/bug_480.txt | 8 +- test/prism/snapshots/whitequark/bug_481.txt | 10 +- .../whitequark/bug_ascii_8bit_in_literal.txt | 4 +- .../whitequark/bug_cmd_string_lookahead.txt | 5 +- test/prism/snapshots/whitequark/bug_cmdarg.txt | 20 +- .../whitequark/bug_def_no_paren_eql_begin.txt | 3 + .../whitequark/bug_do_block_in_call_args.txt | 10 +- .../whitequark/bug_do_block_in_cmdarg.txt | 9 +- .../whitequark/bug_do_block_in_hash_brace.txt | 64 +- test/prism/snapshots/whitequark/bug_heredoc_do.txt | 5 +- .../snapshots/whitequark/bug_interp_single.txt | 14 +- .../snapshots/whitequark/bug_lambda_leakage.txt | 7 +- .../whitequark/bug_regex_verification.txt | 4 +- .../snapshots/whitequark/bug_rescue_empty_else.txt | 6 + .../whitequark/bug_while_not_parens_do.txt | 7 +- test/prism/snapshots/whitequark/case_cond.txt | 7 +- test/prism/snapshots/whitequark/case_cond_else.txt | 11 +- test/prism/snapshots/whitequark/case_expr.txt | 9 +- test/prism/snapshots/whitequark/case_expr_else.txt | 13 +- test/prism/snapshots/whitequark/casgn_scoped.txt | 7 +- test/prism/snapshots/whitequark/casgn_toplevel.txt | 6 +- test/prism/snapshots/whitequark/casgn_unscoped.txt | 5 +- test/prism/snapshots/whitequark/character.txt | 4 +- test/prism/snapshots/whitequark/class.txt | 6 + test/prism/snapshots/whitequark/class_super.txt | 5 + .../snapshots/whitequark/class_super_label.txt | 6 +- .../whitequark/comments_before_leading_dot__27.txt | 10 +- test/prism/snapshots/whitequark/complex.txt | 13 +- test/prism/snapshots/whitequark/cond_begin.txt | 10 +- .../snapshots/whitequark/cond_begin_masgn.txt | 10 +- test/prism/snapshots/whitequark/cond_eflipflop.txt | 9 +- .../cond_eflipflop_with_beginless_range.txt | 3 + .../cond_eflipflop_with_endless_range.txt | 3 + test/prism/snapshots/whitequark/cond_iflipflop.txt | 9 +- .../cond_iflipflop_with_beginless_range.txt | 3 + .../cond_iflipflop_with_endless_range.txt | 3 + .../whitequark/cond_match_current_line.txt | 9 +- test/prism/snapshots/whitequark/const_op_asgn.txt | 27 +- test/prism/snapshots/whitequark/const_scoped.txt | 4 + test/prism/snapshots/whitequark/const_toplevel.txt | 3 + test/prism/snapshots/whitequark/const_unscoped.txt | 3 + test/prism/snapshots/whitequark/cpath.txt | 7 + test/prism/snapshots/whitequark/cvar.txt | 3 + test/prism/snapshots/whitequark/cvasgn.txt | 5 +- .../snapshots/whitequark/dedenting_heredoc.txt | 111 +- ...nterpolating_heredoc_fake_line_continuation.txt | 8 +- ...non_interpolating_heredoc_line_continuation.txt | 8 +- test/prism/snapshots/whitequark/def.txt | 8 + test/prism/snapshots/whitequark/defined.txt | 6 + test/prism/snapshots/whitequark/defs.txt | 12 + test/prism/snapshots/whitequark/empty_stmt.txt | 2 + .../whitequark/endless_comparison_method.txt | 32 +- test/prism/snapshots/whitequark/endless_method.txt | 26 +- .../whitequark/endless_method_command_syntax.txt | 49 +- .../endless_method_forwarded_args_legacy.txt | 9 +- .../whitequark/endless_method_with_rescue_mod.txt | 17 +- .../whitequark/endless_method_without_args.txt | 24 +- test/prism/snapshots/whitequark/ensure.txt | 10 +- test/prism/snapshots/whitequark/ensure_empty.txt | 4 + test/prism/snapshots/whitequark/false.txt | 3 + test/prism/snapshots/whitequark/float.txt | 4 + test/prism/snapshots/whitequark/for.txt | 14 +- test/prism/snapshots/whitequark/for_mlhs.txt | 11 +- test/prism/snapshots/whitequark/forward_arg.txt | 9 +- .../whitequark/forward_arg_with_open_args.txt | 74 +- .../snapshots/whitequark/forward_args_legacy.txt | 18 +- .../forwarded_argument_with_kwrestarg.txt | 9 +- .../whitequark/forwarded_argument_with_restarg.txt | 9 +- .../snapshots/whitequark/forwarded_kwrestarg.txt | 8 +- .../forwarded_kwrestarg_with_additional_kwarg.txt | 12 +- .../snapshots/whitequark/forwarded_restarg.txt | 8 +- test/prism/snapshots/whitequark/gvar.txt | 3 + test/prism/snapshots/whitequark/gvasgn.txt | 5 +- test/prism/snapshots/whitequark/hash_empty.txt | 3 + .../prism/snapshots/whitequark/hash_hashrocket.txt | 17 +- test/prism/snapshots/whitequark/hash_kwsplat.txt | 9 +- test/prism/snapshots/whitequark/hash_label.txt | 8 +- test/prism/snapshots/whitequark/hash_label_end.txt | 28 +- .../whitequark/hash_pair_value_omission.txt | 22 +- test/prism/snapshots/whitequark/heredoc.txt | 8 +- test/prism/snapshots/whitequark/if.txt | 10 +- test/prism/snapshots/whitequark/if_else.txt | 18 +- test/prism/snapshots/whitequark/if_elsif.txt | 14 +- test/prism/snapshots/whitequark/if_masgn__24.txt | 8 + test/prism/snapshots/whitequark/if_mod.txt | 6 +- test/prism/snapshots/whitequark/if_nl_then.txt | 6 +- test/prism/snapshots/whitequark/int.txt | 8 +- test/prism/snapshots/whitequark/int___LINE__.txt | 3 + .../snapshots/whitequark/interp_digit_var.txt | 86 +- test/prism/snapshots/whitequark/ivar.txt | 3 + test/prism/snapshots/whitequark/ivasgn.txt | 5 +- .../whitequark/keyword_argument_omission.txt | 12 +- test/prism/snapshots/whitequark/kwarg.txt | 4 + .../snapshots/whitequark/kwbegin_compstmt.txt | 8 +- test/prism/snapshots/whitequark/kwnilarg.txt | 15 +- test/prism/snapshots/whitequark/kwoptarg.txt | 6 +- .../kwoptarg_with_kwrestarg_and_forwarded_args.txt | 9 +- .../prism/snapshots/whitequark/kwrestarg_named.txt | 4 + .../snapshots/whitequark/kwrestarg_unnamed.txt | 4 + .../whitequark/lbrace_arg_after_command_args.txt | 13 +- .../whitequark/lparenarg_after_lvar__since_25.txt | 12 +- test/prism/snapshots/whitequark/lvar.txt | 4 +- .../snapshots/whitequark/lvar_injecting_match.txt | 7 +- test/prism/snapshots/whitequark/lvasgn.txt | 6 +- test/prism/snapshots/whitequark/masgn.txt | 30 +- test/prism/snapshots/whitequark/masgn_attr.txt | 18 +- test/prism/snapshots/whitequark/masgn_cmd.txt | 6 + test/prism/snapshots/whitequark/masgn_const.txt | 11 + test/prism/snapshots/whitequark/masgn_nested.txt | 11 + test/prism/snapshots/whitequark/masgn_splat.txt | 39 + .../whitequark/method_definition_in_while_cond.txt | 36 +- test/prism/snapshots/whitequark/module.txt | 4 + .../whitequark/multiple_pattern_matches.txt | 54 +- .../whitequark/newline_in_hash_argument.txt | 39 +- test/prism/snapshots/whitequark/nil.txt | 3 + test/prism/snapshots/whitequark/nil_expression.txt | 4 + .../whitequark/non_lvar_injecting_match.txt | 10 +- test/prism/snapshots/whitequark/not.txt | 8 +- test/prism/snapshots/whitequark/not_cmd.txt | 4 +- test/prism/snapshots/whitequark/not_masgn__24.txt | 9 +- test/prism/snapshots/whitequark/nth_ref.txt | 3 + .../whitequark/numbered_args_after_27.txt | 34 +- .../whitequark/numparam_outside_block.txt | 23 +- .../whitequark/numparam_ruby_bug_19025.txt | 12 +- test/prism/snapshots/whitequark/op_asgn.txt | 14 +- test/prism/snapshots/whitequark/op_asgn_cmd.txt | 10 +- test/prism/snapshots/whitequark/op_asgn_index.txt | 10 +- .../snapshots/whitequark/op_asgn_index_cmd.txt | 8 +- test/prism/snapshots/whitequark/optarg.txt | 12 +- test/prism/snapshots/whitequark/or.txt | 4 + test/prism/snapshots/whitequark/or_asgn.txt | 14 +- test/prism/snapshots/whitequark/parser_bug_272.txt | 8 +- test/prism/snapshots/whitequark/parser_bug_490.txt | 23 + test/prism/snapshots/whitequark/parser_bug_507.txt | 6 + test/prism/snapshots/whitequark/parser_bug_518.txt | 5 + test/prism/snapshots/whitequark/parser_bug_525.txt | 12 +- test/prism/snapshots/whitequark/parser_bug_604.txt | 5 +- test/prism/snapshots/whitequark/parser_bug_640.txt | 8 +- test/prism/snapshots/whitequark/parser_bug_645.txt | 6 + test/prism/snapshots/whitequark/parser_bug_830.txt | 4 +- test/prism/snapshots/whitequark/parser_bug_989.txt | 4 +- ...r_drops_truncated_parts_of_squiggly_heredoc.txt | 7 +- .../parser_slash_slash_n_escaping_in_literals.txt | 44 +- .../pattern_matching__FILE__LINE_literals.txt | 11 +- .../whitequark/pattern_matching_blank_else.txt | 12 +- .../snapshots/whitequark/pattern_matching_else.txt | 15 +- .../whitequark/pattern_matching_single_line.txt | 14 +- ...single_line_allowed_omission_of_parentheses.txt | 78 +- test/prism/snapshots/whitequark/postexe.txt | 6 +- test/prism/snapshots/whitequark/preexe.txt | 6 +- test/prism/snapshots/whitequark/procarg0.txt | 13 +- .../prism/snapshots/whitequark/range_exclusive.txt | 8 +- .../prism/snapshots/whitequark/range_inclusive.txt | 8 +- test/prism/snapshots/whitequark/rational.txt | 6 +- test/prism/snapshots/whitequark/regex_interp.txt | 10 +- test/prism/snapshots/whitequark/regex_plain.txt | 4 +- test/prism/snapshots/whitequark/resbody_list.txt | 11 +- .../snapshots/whitequark/resbody_list_mrhs.txt | 11 +- .../snapshots/whitequark/resbody_list_var.txt | 11 +- test/prism/snapshots/whitequark/resbody_var.txt | 20 +- test/prism/snapshots/whitequark/rescue.txt | 10 +- test/prism/snapshots/whitequark/rescue_else.txt | 14 +- .../snapshots/whitequark/rescue_else_ensure.txt | 18 +- test/prism/snapshots/whitequark/rescue_ensure.txt | 14 +- .../whitequark/rescue_in_lambda_block.txt | 5 + test/prism/snapshots/whitequark/rescue_mod.txt | 3 + .../prism/snapshots/whitequark/rescue_mod_asgn.txt | 4 + .../snapshots/whitequark/rescue_mod_masgn.txt | 12 +- .../snapshots/whitequark/rescue_mod_op_assign.txt | 4 + .../whitequark/rescue_without_begin_end.txt | 13 +- test/prism/snapshots/whitequark/restarg_named.txt | 4 + .../prism/snapshots/whitequark/restarg_unnamed.txt | 4 + test/prism/snapshots/whitequark/return.txt | 15 +- test/prism/snapshots/whitequark/return_block.txt | 5 +- test/prism/snapshots/whitequark/ruby_bug_10279.txt | 11 +- test/prism/snapshots/whitequark/ruby_bug_10653.txt | 42 +- test/prism/snapshots/whitequark/ruby_bug_11107.txt | 10 +- test/prism/snapshots/whitequark/ruby_bug_11380.txt | 14 +- test/prism/snapshots/whitequark/ruby_bug_11873.txt | 78 +- .../snapshots/whitequark/ruby_bug_11873_a.txt | 138 +- .../snapshots/whitequark/ruby_bug_11873_b.txt | 11 +- test/prism/snapshots/whitequark/ruby_bug_11989.txt | 4 +- test/prism/snapshots/whitequark/ruby_bug_11990.txt | 10 +- test/prism/snapshots/whitequark/ruby_bug_12073.txt | 19 +- test/prism/snapshots/whitequark/ruby_bug_12402.txt | 68 +- test/prism/snapshots/whitequark/ruby_bug_12669.txt | 18 +- test/prism/snapshots/whitequark/ruby_bug_12686.txt | 8 +- test/prism/snapshots/whitequark/ruby_bug_13547.txt | 5 +- test/prism/snapshots/whitequark/ruby_bug_14690.txt | 10 +- test/prism/snapshots/whitequark/ruby_bug_15789.txt | 24 +- test/prism/snapshots/whitequark/ruby_bug_9669.txt | 14 +- test/prism/snapshots/whitequark/sclass.txt | 5 + test/prism/snapshots/whitequark/self.txt | 3 + test/prism/snapshots/whitequark/send_attr_asgn.txt | 18 +- .../whitequark/send_attr_asgn_conditional.txt | 6 +- test/prism/snapshots/whitequark/send_binary_op.txt | 86 +- .../snapshots/whitequark/send_block_chain_cmd.txt | 40 +- .../whitequark/send_block_conditional.txt | 5 +- test/prism/snapshots/whitequark/send_call.txt | 10 +- .../snapshots/whitequark/send_conditional.txt | 4 +- test/prism/snapshots/whitequark/send_index.txt | 8 +- .../prism/snapshots/whitequark/send_index_asgn.txt | 10 +- .../whitequark/send_index_asgn_legacy.txt | 10 +- test/prism/snapshots/whitequark/send_index_cmd.txt | 4 +- .../snapshots/whitequark/send_index_legacy.txt | 8 +- test/prism/snapshots/whitequark/send_lambda.txt | 7 + .../snapshots/whitequark/send_lambda_args.txt | 8 + .../whitequark/send_lambda_args_noparen.txt | 10 +- .../whitequark/send_lambda_args_shadow.txt | 5 + .../snapshots/whitequark/send_lambda_legacy.txt | 3 + .../whitequark/send_op_asgn_conditional.txt | 6 +- test/prism/snapshots/whitequark/send_plain.txt | 8 +- test/prism/snapshots/whitequark/send_plain_cmd.txt | 8 +- test/prism/snapshots/whitequark/send_self.txt | 10 +- .../prism/snapshots/whitequark/send_self_block.txt | 16 +- test/prism/snapshots/whitequark/send_unary_op.txt | 8 +- .../whitequark/slash_newline_in_heredocs.txt | 12 +- test/prism/snapshots/whitequark/space_args_arg.txt | 8 +- .../snapshots/whitequark/space_args_arg_block.txt | 23 +- .../snapshots/whitequark/space_args_arg_call.txt | 8 +- .../whitequark/space_args_arg_newline.txt | 8 +- .../snapshots/whitequark/space_args_block.txt | 6 +- test/prism/snapshots/whitequark/space_args_cmd.txt | 8 +- .../prism/snapshots/whitequark/string___FILE__.txt | 4 +- test/prism/snapshots/whitequark/string_concat.txt | 10 +- test/prism/snapshots/whitequark/string_dvar.txt | 14 +- test/prism/snapshots/whitequark/string_interp.txt | 10 +- test/prism/snapshots/whitequark/string_plain.txt | 6 +- test/prism/snapshots/whitequark/super.txt | 5 + test/prism/snapshots/whitequark/super_block.txt | 6 + test/prism/snapshots/whitequark/symbol_interp.txt | 9 +- test/prism/snapshots/whitequark/symbol_plain.txt | 6 +- test/prism/snapshots/whitequark/ternary.txt | 10 +- .../whitequark/ternary_ambiguous_symbol.txt | 15 +- .../snapshots/whitequark/trailing_forward_arg.txt | 12 +- test/prism/snapshots/whitequark/true.txt | 3 + .../whitequark/unary_num_pow_precedence.txt | 18 +- test/prism/snapshots/whitequark/undef.txt | 14 +- test/prism/snapshots/whitequark/unless.txt | 10 +- test/prism/snapshots/whitequark/unless_else.txt | 18 +- test/prism/snapshots/whitequark/unless_mod.txt | 6 +- test/prism/snapshots/whitequark/until.txt | 12 +- test/prism/snapshots/whitequark/until_mod.txt | 7 +- test/prism/snapshots/whitequark/until_post.txt | 9 +- test/prism/snapshots/whitequark/var_and_asgn.txt | 5 +- test/prism/snapshots/whitequark/var_op_asgn.txt | 16 +- .../prism/snapshots/whitequark/var_op_asgn_cmd.txt | 4 + test/prism/snapshots/whitequark/var_or_asgn.txt | 5 +- test/prism/snapshots/whitequark/when_multi.txt | 11 +- test/prism/snapshots/whitequark/when_splat.txt | 12 +- test/prism/snapshots/whitequark/when_then.txt | 9 +- test/prism/snapshots/whitequark/while.txt | 12 +- test/prism/snapshots/whitequark/while_mod.txt | 7 +- test/prism/snapshots/whitequark/while_post.txt | 9 +- test/prism/snapshots/whitequark/xstring_interp.txt | 9 +- test/prism/snapshots/whitequark/xstring_plain.txt | 4 +- test/prism/snapshots/whitequark/zsuper.txt | 3 + test/prism/snapshots/xstring.txt | 19 +- test/prism/snapshots/xstring_with_backslash.txt | 4 +- test/prism/snapshots/yield.txt | 22 +- vm_insnhelper.c | 8 +- win32/Makefile.sub | 7 + yjit/src/core.rs | 28 +- 1200 files changed, 15741 insertions(+), 8023 deletions(-) delete mode 100644 doc/yjit/yjit_hacking.md rename ext/-test-/bug-14834/{bug-14384.c => bug-14834.c} (94%) rename gc_impl.c => gc/default.c (99%) create mode 100644 lib/prism/parse_result/errors.rb create mode 100644 test/prism/errors/1_2_3.txt create mode 100644 test/prism/errors/aliasing_global_variable_with_global_number_variable.txt create mode 100644 test/prism/errors/aliasing_global_variable_with_non_global_variable.txt create mode 100644 test/prism/errors/aliasing_non_global_variable_with_global_variable.txt create mode 100644 test/prism/errors/alnum_delimiters.txt create mode 100644 test/prism/errors/alnum_delimiters_2.txt create mode 100644 test/prism/errors/alnum_delimiters_3.txt create mode 100644 test/prism/errors/alnum_delimiters_4.txt create mode 100644 test/prism/errors/alnum_delimiters_5.txt create mode 100644 test/prism/errors/alnum_delimiters_6.txt create mode 100644 test/prism/errors/alnum_delimiters_7.txt create mode 100644 test/prism/errors/alnum_delimiters_8.txt create mode 100644 test/prism/errors/alnum_delimiters_9.txt create mode 100644 test/prism/errors/argument_after_ellipsis.txt create mode 100644 test/prism/errors/argument_forwarding_only_effects_its_own_internals.txt create mode 100644 test/prism/errors/argument_forwarding_when_parent_is_not_forwarding.txt create mode 100644 test/prism/errors/arguments_after_block.txt create mode 100644 test/prism/errors/arguments_binding_power_for_and.txt create mode 100644 test/prism/errors/assign_to_numbered_parameter.txt create mode 100644 test/prism/errors/bad_arguments.txt create mode 100644 test/prism/errors/begin_at_toplevel.txt create mode 100644 test/prism/errors/binary_range_with_left_unary_range.txt create mode 100644 test/prism/errors/block_arg_and_block.txt create mode 100644 test/prism/errors/block_beginning_with_brace_and_ending_with_end.txt create mode 100644 test/prism/errors/break_1.txt create mode 100644 test/prism/errors/break_1_2_3.txt create mode 100644 test/prism/errors/call_with_block_and_write.txt create mode 100644 test/prism/errors/call_with_block_operator_write.txt create mode 100644 test/prism/errors/call_with_block_or_write.txt create mode 100644 test/prism/errors/cannot_assign_to_a_reserved_numbered_parameter.txt create mode 100644 test/prism/errors/case_without_clauses.txt create mode 100644 test/prism/errors/case_without_when_clauses_errors_on_else_clause.txt create mode 100644 test/prism/errors/check_value_expression.txt create mode 100644 test/prism/errors/class_definition_in_method_body.txt create mode 100644 test/prism/errors/class_definition_in_method_defs.txt create mode 100644 test/prism/errors/class_name.txt create mode 100644 test/prism/errors/command_call_in.txt create mode 100644 test/prism/errors/command_calls.txt create mode 100644 test/prism/errors/command_calls_10.txt create mode 100644 test/prism/errors/command_calls_11.txt create mode 100644 test/prism/errors/command_calls_12.txt create mode 100644 test/prism/errors/command_calls_13.txt create mode 100644 test/prism/errors/command_calls_14.txt create mode 100644 test/prism/errors/command_calls_15.txt create mode 100644 test/prism/errors/command_calls_16.txt create mode 100644 test/prism/errors/command_calls_17.txt create mode 100644 test/prism/errors/command_calls_18.txt create mode 100644 test/prism/errors/command_calls_19.txt create mode 100644 test/prism/errors/command_calls_2.txt create mode 100644 test/prism/errors/command_calls_20.txt create mode 100644 test/prism/errors/command_calls_21.txt create mode 100644 test/prism/errors/command_calls_22.txt create mode 100644 test/prism/errors/command_calls_23.txt create mode 100644 test/prism/errors/command_calls_24.txt create mode 100644 test/prism/errors/command_calls_25.txt create mode 100644 test/prism/errors/command_calls_26.txt create mode 100644 test/prism/errors/command_calls_27.txt create mode 100644 test/prism/errors/command_calls_28.txt create mode 100644 test/prism/errors/command_calls_29.txt create mode 100644 test/prism/errors/command_calls_3.txt create mode 100644 test/prism/errors/command_calls_30.txt create mode 100644 test/prism/errors/command_calls_4.txt create mode 100644 test/prism/errors/command_calls_5.txt create mode 100644 test/prism/errors/command_calls_6.txt create mode 100644 test/prism/errors/command_calls_7.txt create mode 100644 test/prism/errors/command_calls_8.txt create mode 100644 test/prism/errors/command_calls_9.txt create mode 100644 test/prism/errors/conditional_predicate_closed.txt create mode 100644 test/prism/errors/constant_assignment_in_method.txt create mode 100644 test/prism/errors/constant_path_with_invalid_token_after.txt create mode 100644 test/prism/errors/content_after_unterminated_heredoc.txt create mode 100644 test/prism/errors/cr_without_lf_in_percent_expression.txt create mode 100644 test/prism/errors/def_with_empty_expression_receiver.txt create mode 100644 test/prism/errors/def_with_expression_receiver_and_no_identifier.txt create mode 100644 test/prism/errors/def_with_multiple_statements_receiver.txt create mode 100644 test/prism/errors/defining_numbered_parameter.txt create mode 100644 test/prism/errors/defining_numbered_parameter_2.txt create mode 100644 test/prism/errors/do_not_allow_characters_other_than_0_9_a_f_and_A_F_in_u_Unicode_character_notation.txt create mode 100644 test/prism/errors/do_not_allow_forward_arguments_in_blocks.txt create mode 100644 test/prism/errors/do_not_allow_forward_arguments_in_lambda_literals.txt create mode 100644 test/prism/errors/do_not_allow_more_than_6_hexadecimal_digits_in_u_Unicode_character_notation.txt create mode 100644 test/prism/errors/do_not_allow_multiple_codepoints_in_a_single_character_literal.txt create mode 100644 test/prism/errors/do_not_allow_trailing_commas_in_lambda_parameters.txt create mode 100644 test/prism/errors/do_not_allow_trailing_commas_in_method_parameters.txt create mode 100644 test/prism/errors/dont_allow_return_inside_class_body.txt create mode 100644 test/prism/errors/dont_allow_return_inside_module_body.txt create mode 100644 test/prism/errors/dont_allow_setting_to_back_and_nth_reference.txt create mode 100644 test/prism/errors/double_arguments_forwarding.txt create mode 100644 test/prism/errors/double_scope_numbered_parameters.txt create mode 100644 test/prism/errors/double_splat_followed_by_splat_argument.txt create mode 100644 test/prism/errors/duplicate_pattern_capture.txt create mode 100644 test/prism/errors/duplicate_pattern_hash_key.txt create mode 100644 test/prism/errors/duplicate_pattern_hash_key_2.txt create mode 100644 test/prism/errors/duplicated_parameter_names.txt create mode 100644 test/prism/errors/duplicated_parameter_names_2.txt create mode 100644 test/prism/errors/duplicated_parameter_names_3.txt create mode 100644 test/prism/errors/duplicated_parameter_names_4.txt create mode 100644 test/prism/errors/duplicated_parameter_names_5.txt create mode 100644 test/prism/errors/ellipsis_in_no_paren_call.txt create mode 100644 test/prism/errors/for_loops_index_missing.txt create mode 100644 test/prism/errors/for_loops_only_end.txt create mode 100644 test/prism/errors/forwarding_arg_after_keyword_rest.txt create mode 100644 test/prism/errors/forwarding_arg_and_block.txt create mode 100644 test/prism/errors/incomplete_instance_var_string.txt create mode 100644 test/prism/errors/index_call_with_block_and_write.txt create mode 100644 test/prism/errors/index_call_with_block_operator_write.txt create mode 100644 test/prism/errors/index_call_with_block_or_write.txt create mode 100644 test/prism/errors/interpolated_regular_expression_with_unknown_regexp_options.txt create mode 100644 test/prism/errors/invalid_global_variable_write.txt create mode 100644 test/prism/errors/invalid_hex_escape.txt create mode 100644 test/prism/errors/invalid_multi_target.txt create mode 100644 test/prism/errors/invalid_multi_target_10.txt create mode 100644 test/prism/errors/invalid_multi_target_11.txt create mode 100644 test/prism/errors/invalid_multi_target_12.txt create mode 100644 test/prism/errors/invalid_multi_target_13.txt create mode 100644 test/prism/errors/invalid_multi_target_14.txt create mode 100644 test/prism/errors/invalid_multi_target_15.txt create mode 100644 test/prism/errors/invalid_multi_target_16.txt create mode 100644 test/prism/errors/invalid_multi_target_17.txt create mode 100644 test/prism/errors/invalid_multi_target_18.txt create mode 100644 test/prism/errors/invalid_multi_target_19.txt create mode 100644 test/prism/errors/invalid_multi_target_2.txt create mode 100644 test/prism/errors/invalid_multi_target_20.txt create mode 100644 test/prism/errors/invalid_multi_target_3.txt create mode 100644 test/prism/errors/invalid_multi_target_4.txt create mode 100644 test/prism/errors/invalid_multi_target_5.txt create mode 100644 test/prism/errors/invalid_multi_target_6.txt create mode 100644 test/prism/errors/invalid_multi_target_7.txt create mode 100644 test/prism/errors/invalid_multi_target_8.txt create mode 100644 test/prism/errors/invalid_multi_target_9.txt create mode 100644 test/prism/errors/invalid_number_underscores.txt create mode 100644 test/prism/errors/invalid_number_underscores_10.txt create mode 100644 test/prism/errors/invalid_number_underscores_11.txt create mode 100644 test/prism/errors/invalid_number_underscores_12.txt create mode 100644 test/prism/errors/invalid_number_underscores_2.txt create mode 100644 test/prism/errors/invalid_number_underscores_3.txt create mode 100644 test/prism/errors/invalid_number_underscores_4.txt create mode 100644 test/prism/errors/invalid_number_underscores_5.txt create mode 100644 test/prism/errors/invalid_number_underscores_6.txt create mode 100644 test/prism/errors/invalid_number_underscores_7.txt create mode 100644 test/prism/errors/invalid_number_underscores_8.txt create mode 100644 test/prism/errors/invalid_number_underscores_9.txt create mode 100644 test/prism/errors/invalid_operator_write_dot.txt create mode 100644 test/prism/errors/invalid_operator_write_fcall.txt create mode 100644 test/prism/errors/it_with_ordinary_parameter.txt create mode 100644 test/prism/errors/keywords_parameters_before_required_parameters.txt create mode 100644 test/prism/errors/loop_conditional_is_closed.txt create mode 100644 test/prism/errors/match_plus.txt create mode 100644 test/prism/errors/method_parameters_after_arguments_forwarding.txt create mode 100644 test/prism/errors/method_parameters_after_block.txt create mode 100644 test/prism/errors/method_with_arguments_after_anonymous_block.txt create mode 100644 test/prism/errors/missing_terminator_in_parentheses.txt create mode 100644 test/prism/errors/module_definition_in_method_body.txt create mode 100644 test/prism/errors/module_definition_in_method_body_within_block.txt create mode 100644 test/prism/errors/module_definition_in_method_defs.txt create mode 100644 test/prism/errors/module_name_recoverable.txt create mode 100644 test/prism/errors/multiple_error_in_parameters_order.txt create mode 100644 test/prism/errors/next_1.txt create mode 100644 test/prism/errors/next_1_2_3.txt create mode 100644 test/prism/errors/non_assoc_equality.txt create mode 100644 test/prism/errors/non_assoc_range.txt create mode 100644 test/prism/errors/numbered_parameters_in_block_arguments.txt create mode 100644 test/prism/errors/optional_block_parameters_with_unary_operator.txt create mode 100644 test/prism/errors/optional_block_parameters_with_unary_operator_2.txt create mode 100644 test/prism/errors/optional_block_parameters_with_unary_operator_3.txt create mode 100644 test/prism/errors/optional_block_parameters_with_unary_operator_4.txt create mode 100644 test/prism/errors/parameter_name_ending_with_bang_or_question_mark.txt create mode 100644 test/prism/errors/pre_execution_context.txt create mode 100644 test/prism/errors/pre_execution_missing_brace.txt create mode 100644 test/prism/errors/range_and_bin_op.txt create mode 100644 test/prism/errors/range_and_bin_op_2.txt create mode 100644 test/prism/errors/range_and_bin_op_3.txt create mode 100644 test/prism/errors/range_and_bin_op_4.txt create mode 100644 test/prism/errors/range_and_bin_op_5.txt create mode 100644 test/prism/errors/range_and_bin_op_6.txt create mode 100644 test/prism/errors/range_and_bin_op_7.txt create mode 100644 test/prism/errors/range_and_bin_op_8.txt create mode 100644 test/prism/errors/rational_number_with_exponential_portion.txt create mode 100644 test/prism/errors/regular_expression_with_unknown_regexp_options.txt create mode 100644 test/prism/errors/repeated_parameter_name_in_destructured_params.txt create mode 100644 test/prism/errors/rest_keywords_parameters_before_required_parameters.txt create mode 100644 test/prism/errors/return_1.txt create mode 100644 test/prism/errors/return_1_2_3.txt create mode 100644 test/prism/errors/returning_to_optional_parameters_multiple_times.txt create mode 100644 test/prism/errors/semicolon_after_inheritance_operator.txt create mode 100644 test/prism/errors/setter_method_cannot_be_defined_in_an_endless_method_definition.txt create mode 100644 test/prism/errors/shadow_args_in_block.txt create mode 100644 test/prism/errors/shadow_args_in_lambda.txt create mode 100644 test/prism/errors/singleton_method_for_literals.txt create mode 100644 test/prism/errors/splat_argument_after_keyword_argument.txt create mode 100644 test/prism/errors/statement_at_non_statement.txt create mode 100644 test/prism/errors/statement_operators.txt create mode 100644 test/prism/errors/switching_to_named_arguments_twice.txt create mode 100644 test/prism/errors/switching_to_optional_arguments_twice.txt create mode 100644 test/prism/errors/symbol_in_hash.txt create mode 100644 test/prism/errors/symbol_in_keyword_parameter.txt create mode 100644 test/prism/errors/targeting_numbered_parameter.txt create mode 100644 test/prism/errors/top_level_constant_starting_with_downcased_identifier.txt create mode 100644 test/prism/errors/top_level_constant_with_downcased_identifier.txt create mode 100644 test/prism/errors/trailing_comma_in_calls.txt create mode 100644 test/prism/errors/unexpected_block.txt create mode 100644 test/prism/errors/unterminated_W_list.txt create mode 100644 test/prism/errors/unterminated_argument_expression.txt create mode 100644 test/prism/errors/unterminated_embdoc.txt create mode 100644 test/prism/errors/unterminated_embdoc_2.txt create mode 100644 test/prism/errors/unterminated_empty_string.txt create mode 100644 test/prism/errors/unterminated_global_variable.txt create mode 100644 test/prism/errors/unterminated_global_variable_2.txt create mode 100644 test/prism/errors/unterminated_i_list.txt create mode 100644 test/prism/errors/unterminated_interpolated_string.txt create mode 100644 test/prism/errors/unterminated_interpolated_symbol.txt create mode 100644 test/prism/errors/unterminated_parenthesized_expression.txt create mode 100644 test/prism/errors/unterminated_regular_expression.txt create mode 100644 test/prism/errors/unterminated_regular_expression_with_heredoc.txt create mode 100644 test/prism/errors/unterminated_s_symbol.txt create mode 100644 test/prism/errors/unterminated_string.txt create mode 100644 test/prism/errors/unterminated_unicode_brackets_should_be_a_syntax_error.txt create mode 100644 test/prism/errors/unterminated_xstring.txt create mode 100644 test/prism/errors/void_value_expression_in_arguments.txt create mode 100644 test/prism/errors/void_value_expression_in_array.txt create mode 100644 test/prism/errors/void_value_expression_in_assignment.txt create mode 100644 test/prism/errors/void_value_expression_in_begin_statement.txt create mode 100644 test/prism/errors/void_value_expression_in_binary_call.txt create mode 100644 test/prism/errors/void_value_expression_in_call.txt create mode 100644 test/prism/errors/void_value_expression_in_constant_path.txt create mode 100644 test/prism/errors/void_value_expression_in_def.txt create mode 100644 test/prism/errors/void_value_expression_in_expression.txt create mode 100644 test/prism/errors/void_value_expression_in_hash.txt create mode 100644 test/prism/errors/void_value_expression_in_modifier.txt create mode 100644 test/prism/errors/void_value_expression_in_statement.txt create mode 100644 test/prism/errors/void_value_expression_in_unary_call.txt create mode 100644 test/prism/errors/while_endless_method.txt create mode 100644 test/prism/errors/writing_numbered_parameter.txt create mode 100644 test/prism/result/breadth_first_search_test.rb create mode 100644 test/prism/result/node_id_test.rb Latest commit hash = fa6bf1da57 $$$[end] "make update-src DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make after-update DEFS="-DRUBY_DEBUG=1" sed 's/{\$([^(){}]*)[^{}]*}//g' /tmp/ruby/src/trunk-repeat20-asserts/common.mk > uncommon.mk MAKE=make /bin/sh ./config.status Makefile config.status: creating Makefile /tmp/ruby/src/trunk-repeat20-asserts/revision.h updated /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange "--timestamp=.rbconfig.time" rbconfig.rb rbconfig.tmp rbconfig.rb unchanged generating x86_64-linux-fake.rb x86_64-linux-fake.rb updated generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' Update power_assert to 84e85124c5014a139af39161d484156cfe87a9ed echo 84e85124c5014a139af39161d484156cfe87a9ed | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision unchanged Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-repeat20-asserts/gems/power_assert-2.0.3.gem Successfully built RubyGem Name: power_assert Version: 2.0.4dev File: power_assert-2.0.4dev.gem Update typeprof to b19a6416da3a05d57fadd6ffdadb382b6d236ca5 echo b19a6416da3a05d57fadd6ffdadb382b6d236ca5 | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision unchanged Extracting bundle gem power_assert-2.0.3... Try with hash version of bundled gems instead of gems/power_assert-2.0.3.gem. We don't use this gem with release version of Ruby. Unpacked gems/power_assert-2.0.4dev.gem $$$[end] "make after-update DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make miniruby DEFS="-DRUBY_DEBUG=1" BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = -DRUBY_DEBUG=1 DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. compiling /tmp/ruby/src/trunk-repeat20-asserts/main.c compiling /tmp/ruby/src/trunk-repeat20-asserts/dmydln.c compiling /tmp/ruby/src/trunk-repeat20-asserts/miniinit.c compiling /tmp/ruby/src/trunk-repeat20-asserts/array.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ast.c compiling /tmp/ruby/src/trunk-repeat20-asserts/bignum.c compiling /tmp/ruby/src/trunk-repeat20-asserts/class.c compiling /tmp/ruby/src/trunk-repeat20-asserts/compar.c compiling /tmp/ruby/src/trunk-repeat20-asserts/compile.c compiling /tmp/ruby/src/trunk-repeat20-asserts/complex.c compiling /tmp/ruby/src/trunk-repeat20-asserts/cont.c compiling /tmp/ruby/src/trunk-repeat20-asserts/debug.c compiling /tmp/ruby/src/trunk-repeat20-asserts/debug_counter.c compiling /tmp/ruby/src/trunk-repeat20-asserts/dir.c compiling /tmp/ruby/src/trunk-repeat20-asserts/dln_find.c compiling /tmp/ruby/src/trunk-repeat20-asserts/encoding.c compiling /tmp/ruby/src/trunk-repeat20-asserts/enum.c compiling /tmp/ruby/src/trunk-repeat20-asserts/enumerator.c compiling /tmp/ruby/src/trunk-repeat20-asserts/error.c compiling /tmp/ruby/src/trunk-repeat20-asserts/eval.c compiling /tmp/ruby/src/trunk-repeat20-asserts/file.c compiling /tmp/ruby/src/trunk-repeat20-asserts/gc.c compiling /tmp/ruby/src/trunk-repeat20-asserts/gc/default.c compiling /tmp/ruby/src/trunk-repeat20-asserts/hash.c compiling /tmp/ruby/src/trunk-repeat20-asserts/inits.c compiling /tmp/ruby/src/trunk-repeat20-asserts/imemo.c compiling /tmp/ruby/src/trunk-repeat20-asserts/io.c compiling /tmp/ruby/src/trunk-repeat20-asserts/io_buffer.c compiling /tmp/ruby/src/trunk-repeat20-asserts/iseq.c compiling /tmp/ruby/src/trunk-repeat20-asserts/load.c compiling /tmp/ruby/src/trunk-repeat20-asserts/marshal.c compiling /tmp/ruby/src/trunk-repeat20-asserts/math.c compiling /tmp/ruby/src/trunk-repeat20-asserts/memory_view.c compiling /tmp/ruby/src/trunk-repeat20-asserts/rjit.c compiling /tmp/ruby/src/trunk-repeat20-asserts/rjit_c.c compiling /tmp/ruby/src/trunk-repeat20-asserts/node.c compiling /tmp/ruby/src/trunk-repeat20-asserts/node_dump.c compiling /tmp/ruby/src/trunk-repeat20-asserts/numeric.c compiling /tmp/ruby/src/trunk-repeat20-asserts/object.c compiling /tmp/ruby/src/trunk-repeat20-asserts/pack.c compiling parse.c compiling /tmp/ruby/src/trunk-repeat20-asserts/parser_st.c compiling /tmp/ruby/src/trunk-repeat20-asserts/proc.c compiling /tmp/ruby/src/trunk-repeat20-asserts/process.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ractor.c compiling /tmp/ruby/src/trunk-repeat20-asserts/random.c compiling /tmp/ruby/src/trunk-repeat20-asserts/range.c compiling /tmp/ruby/src/trunk-repeat20-asserts/rational.c compiling /tmp/ruby/src/trunk-repeat20-asserts/re.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regcomp.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regenc.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regerror.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regexec.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regparse.c compiling /tmp/ruby/src/trunk-repeat20-asserts/regsyntax.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ruby.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ruby_parser.c compiling /tmp/ruby/src/trunk-repeat20-asserts/scheduler.c compiling /tmp/ruby/src/trunk-repeat20-asserts/shape.c compiling /tmp/ruby/src/trunk-repeat20-asserts/signal.c compiling /tmp/ruby/src/trunk-repeat20-asserts/sprintf.c compiling /tmp/ruby/src/trunk-repeat20-asserts/st.c compiling /tmp/ruby/src/trunk-repeat20-asserts/strftime.c compiling /tmp/ruby/src/trunk-repeat20-asserts/string.c compiling /tmp/ruby/src/trunk-repeat20-asserts/struct.c compiling /tmp/ruby/src/trunk-repeat20-asserts/symbol.c compiling /tmp/ruby/src/trunk-repeat20-asserts/thread.c compiling /tmp/ruby/src/trunk-repeat20-asserts/time.c compiling /tmp/ruby/src/trunk-repeat20-asserts/transcode.c compiling /tmp/ruby/src/trunk-repeat20-asserts/util.c compiling /tmp/ruby/src/trunk-repeat20-asserts/variable.c compiling /tmp/ruby/src/trunk-repeat20-asserts/version.c compiling /tmp/ruby/src/trunk-repeat20-asserts/vm.c compiling /tmp/ruby/src/trunk-repeat20-asserts/vm_backtrace.c compiling /tmp/ruby/src/trunk-repeat20-asserts/vm_dump.c compiling /tmp/ruby/src/trunk-repeat20-asserts/vm_sync.c compiling /tmp/ruby/src/trunk-repeat20-asserts/vm_trace.c compiling /tmp/ruby/src/trunk-repeat20-asserts/weakmap.c compiling prism/api_node.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/api_pack.c compiling prism/diagnostic.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/extension.c compiling prism/node.c compiling prism/prettyprint.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/regexp.c compiling prism/serialize.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/static_literals.c compiling prism/token_type.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_buffer.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_char.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_integer.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_memchr.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_newline_list.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/util/pm_strpbrk.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism/prism.c compiling /tmp/ruby/src/trunk-repeat20-asserts/prism_init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/yjit.c building Rust YJIT (release mode) touch yjit/target/release/libyjit.a partial linking yjit/target/release/libyjit.a into yjit/target/release/libyjit.o compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/ascii.c compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/us_ascii.c compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/unicode.c compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/utf_8.c compiling enc/trans/newline.c compiling /tmp/ruby/src/trunk-repeat20-asserts/missing/setproctitle.c compiling /tmp/ruby/src/trunk-repeat20-asserts/addr2line.c linking miniruby $$$[end] "make miniruby DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make ruby DEFS="-DRUBY_DEBUG=1" BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = -DRUBY_DEBUG=1 DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. compiling /tmp/ruby/src/trunk-repeat20-asserts/dln.c compiling /tmp/ruby/src/trunk-repeat20-asserts/localeinit.c creating verconf.h verconf.h updated compiling /tmp/ruby/src/trunk-repeat20-asserts/loadpath.c builtin_binary.inc updated f33a961dff1f77644ed56b84422e71bc4f9236bc5e90df6a0f87061d30edff22 builtin_binary.inc compiling /tmp/ruby/src/trunk-repeat20-asserts/builtin.c linking static-library libruby-static.a linking shared-library libruby.so.3.4.0 linking ruby $$$[end] "make ruby DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make all DEFS="-DRUBY_DEBUG=1" BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = -DRUBY_DEBUG=1 DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h encdb.h unchanged generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' configuring -test-/bug-14834 make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/RUBY_ALIGNOF' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/RUBY_ALIGNOF/c.c linking shared-object -test-/RUBY_ALIGNOF.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/RUBY_ALIGNOF' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/arith_seq/beg_len_step' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/arith_seq/beg_len_step/beg_len_step.c linking shared-object -test-/arith_seq/beg_len_step.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/arith_seq/beg_len_step' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/arith_seq/extract' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/arith_seq/extract/extract.c linking shared-object -test-/arith_seq/extract.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/arith_seq/extract' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/array/concat' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/array/concat/to_ary_concat.c linking shared-object -test-/array/to_ary_concat.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/array/concat' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/array/resize' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/array/resize/resize.c linking shared-object -test-/array/resize.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/array/resize' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bignum' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/big2str.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/bigzero.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/div.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/intpack.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/mul.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bignum/str2big.c linking shared-object -test-/bignum.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bignum' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-14834' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bug-14834/bug-14834.c linking shared-object -test-/bug_14834.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-14834' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-3571' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bug-3571/bug.c linking shared-object -test-/bug_3571.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-3571' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-5832' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bug-5832/bug.c linking shared-object -test-/bug_5832.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug-5832' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug_reporter' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/bug_reporter/bug_reporter.c linking shared-object -test-/bug_reporter.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/bug_reporter' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/class' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/class/class2name.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/class/init.c linking shared-object -test-/class.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/class' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/debug' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/debug/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/debug/inspector.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/debug/profile_frames.c linking shared-object -test-/debug.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/dln/empty' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/dln/empty/empty.c linking shared-object -test-/dln/empty.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/dln/empty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/enumerator_kw' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/enumerator_kw/enumerator_kw.c linking shared-object -test-/enumerator_kw.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/enumerator_kw' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/exception' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/exception/dataerror.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/exception/enc_raise.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/exception/ensured.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/exception/init.c linking shared-object -test-/exception.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/exception' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/fatal' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/fatal/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/fatal/invalid.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/fatal/rb_fatal.c linking shared-object -test-/fatal.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/fatal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/file' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/file/fs.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/file/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/file/newline_conv.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/file/stat.c linking shared-object -test-/file.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/file' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/float' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/float/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/float/nextafter.c linking shared-object -test-/float.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/float' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/funcall' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/funcall/funcall.c linking shared-object -test-/funcall.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/funcall' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/gvl/call_without_gvl' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/gvl/call_without_gvl/call_without_gvl.c linking shared-object -test-/gvl/call_without_gvl.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/gvl/call_without_gvl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/hash' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/hash/delete.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/hash/init.c linking shared-object -test-/hash.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/hash' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/integer' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/integer/core_ext.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/integer/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/integer/my_integer.c linking shared-object -test-/integer.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/integer' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/iseq_load' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/iseq_load/iseq_load.c linking shared-object -test-/iseq_load.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/iseq_load' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/iter' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/iter/break.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/iter/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/iter/yield.c linking shared-object -test-/iter.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/iter' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/load/dot.dot' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/load/dot.dot/dot.dot.c linking shared-object -test-/load/dot.dot.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/load/dot.dot' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/load/protect' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/load/protect/protect.c linking shared-object -test-/load/protect.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/load/protect' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/compat' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/marshal/compat/usrcompat.c linking shared-object -test-/marshal/compat.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/compat' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/internal_ivar' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/marshal/internal_ivar/internal_ivar.c linking shared-object -test-/marshal/internal_ivar.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/internal_ivar' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/usr' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/marshal/usr/usrmarshal.c linking shared-object -test-/marshal/usr.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/marshal/usr' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/memory_view' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/memory_view/memory_view.c linking shared-object -test-/memory_view.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/memory_view' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/method' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/method/arity.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/method/init.c linking shared-object -test-/method.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/method' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/notimplement' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/notimplement/bug.c linking shared-object -test-/notimplement.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/notimplement' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/num2int' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/num2int/num2int.c linking shared-object -test-/num2int.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/num2int' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/path_to_class' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/path_to_class/path_to_class.c linking shared-object -test-/path_to_class.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/path_to_class' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/popen_deadlock' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/popen_deadlock/infinite_loop_dlsym.c linking shared-object -test-/popen_deadlock/infinite_loop_dlsym.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/popen_deadlock' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/postponed_job' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/postponed_job/postponed_job.c linking shared-object -test-/postponed_job.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/postponed_job' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/printf' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/printf/printf.c linking shared-object -test-/printf.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/printf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/proc' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/proc/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/proc/receiver.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/proc/super.c linking shared-object -test-/proc.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/proc' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/random' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/random/bad_version.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/random/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/random/loop.c linking shared-object -test-/random.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/random' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/rational' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/rational/rat.c linking shared-object -test-/rational.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/rational' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/rb_call_super_kw' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/rb_call_super_kw/rb_call_super_kw.c linking shared-object -test-/rb_call_super_kw.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/rb_call_super_kw' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/recursion' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/recursion/recursion.c linking shared-object -test-/recursion.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/recursion' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/regexp' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/regexp/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/regexp/parse_depth_limit.c linking shared-object -test-/regexp.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/regexp' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/scan_args' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/scan_args/scan_args.c linking shared-object -test-/scan_args.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/scan_args' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/foreach' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/st/foreach/foreach.c linking shared-object -test-/st/foreach.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/foreach' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/numhash' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/st/numhash/numhash.c linking shared-object -test-/st/numhash.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/numhash' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/update' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/st/update/update.c linking shared-object -test-/st/update.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/st/update' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/string' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/capacity.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/coderange.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/cstr.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/ellipsize.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/enc_associate.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/enc_dummy.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/enc_str_buf_cat.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/fstring.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/modify.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/new.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/nofree.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/normalize.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/qsort.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/rb_interned_str.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/rb_str_dup.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/string/set_len.c linking shared-object -test-/string.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/string' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/struct' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/struct/data.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/struct/duplicate.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/struct/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/struct/len.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/struct/member.c linking shared-object -test-/struct.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/struct' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/symbol' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/symbol/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/symbol/type.c linking shared-object -test-/symbol.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/symbol' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/thread/instrumentation' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/thread/instrumentation/instrumentation.c linking shared-object -test-/thread/instrumentation.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/thread/instrumentation' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/thread_fd' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/thread_fd/thread_fd.c linking shared-object -test-/thread_fd.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/thread_fd' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/time' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/time/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/time/leap_second.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/time/new.c linking shared-object -test-/time.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/time' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/tracepoint' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/tracepoint/gc_hook.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/tracepoint/tracepoint.c linking shared-object -test-/tracepoint.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/tracepoint' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/typeddata' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/typeddata/typeddata.c linking shared-object -test-/typeddata.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/typeddata' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/vm' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/vm/at_exit.c linking shared-object -test-/vm/at_exit.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/vm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/wait' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/-test-/wait/wait.c linking shared-object -test-/wait.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/-test-/wait' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/cgi/escape' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/cgi/escape/escape.c linking shared-object cgi/escape.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/cgi/escape' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/continuation' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/continuation/continuation.c linking shared-object continuation.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/continuation' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/coverage/coverage.c linking shared-object coverage.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/date/date_core.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/date/date_parse.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/date/date_strftime.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/date/date_strptime.c linking shared-object date_core.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/digest.c linking shared-object digest.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/bubblebabble' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/bubblebabble/bubblebabble.c linking shared-object digest/bubblebabble.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/bubblebabble' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/md5' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/md5/md5init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/md5/md5.c linking shared-object digest/md5.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/md5' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/rmd160' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/rmd160/rmd160init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/rmd160/rmd160.c linking shared-object digest/rmd160.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/rmd160' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha1' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/sha1/sha1init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/sha1/sha1.c linking shared-object digest/sha1.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha1' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/sha2/sha2init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/digest/sha2/sha2.c linking shared-object digest/sha2.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/etc' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/etc/etc.c linking shared-object etc.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/etc' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fcntl' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fcntl/fcntl.c linking shared-object fcntl.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fcntl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/closure.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/conversions.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/fiddle.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/function.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/handle.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/memory_view.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/pinned.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/fiddle/pointer.c linking shared-object fiddle.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/io/console/console.c linking shared-object io/console.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/nonblock' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/io/nonblock/nonblock.c linking shared-object io/nonblock.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/nonblock' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/wait' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/io/wait/wait.c linking shared-object io/wait.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/wait' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json/generator' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/json/generator/generator.c linking shared-object json/ext/generator.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json/generator' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json/parser' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/json/parser/parser.c linking shared-object json/ext/parser.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json/parser' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/monitor/monitor.c linking shared-object monitor.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/objspace/object_tracing.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/objspace/objspace.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/objspace/objspace_dump.c linking shared-object objspace.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_asn1.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_bio.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_bn.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_cipher.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_config.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_digest.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_engine.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_hmac.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_kdf.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_ns_spki.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_ocsp.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkcs12.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkcs7.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkey.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkey_dh.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkey_dsa.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkey_ec.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_pkey_rsa.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_provider.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_rand.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_ssl.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_ssl_session.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_ts.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509attr.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509cert.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509crl.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509ext.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509name.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509req.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509revoked.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/openssl/ossl_x509store.c linking shared-object openssl.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/pathname/pathname.c linking shared-object pathname.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/psych/psych.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/psych/psych_emitter.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/psych/psych_parser.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/psych/psych_to_ruby.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/psych/psych_yaml_tree.c linking shared-object psych.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/pty/pty.c linking shared-object pty.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rbconfig/sizeof' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/rbconfig/sizeof/sizes.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/rbconfig/sizeof/limits.c linking shared-object rbconfig/sizeof.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rbconfig/sizeof' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/ripper/eventids1.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/ripper/eventids2.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/ripper/ripper.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/ripper/ripper_init.c linking shared-object ripper.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/init.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/constants.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/basicsocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/socket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/ipsocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/tcpsocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/tcpserver.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/sockssocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/udpsocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/unixsocket.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/unixserver.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/option.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/ancdata.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/raddrinfo.c compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/socket/ifaddr.c linking shared-object socket.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/stringio' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/stringio/stringio.c linking shared-object stringio.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/stringio' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/strscan' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/strscan/strscan.c linking shared-object strscan.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/strscan' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/zlib' compiling /tmp/ruby/src/trunk-repeat20-asserts/ext/zlib/zlib.c linking shared-object zlib.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/zlib' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' building spec/ruby/optional/capi/ext/array_spec.so building spec/ruby/optional/capi/ext/basic_object_spec.so building spec/ruby/optional/capi/ext/bignum_spec.so building spec/ruby/optional/capi/ext/binding_spec.so building spec/ruby/optional/capi/ext/boolean_spec.so building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.so building spec/ruby/optional/capi/ext/class_spec.so building spec/ruby/optional/capi/ext/class_under_autoload_spec.so building spec/ruby/optional/capi/ext/complex_spec.so building spec/ruby/optional/capi/ext/constants_spec.so building spec/ruby/optional/capi/ext/data_spec.so building spec/ruby/optional/capi/ext/debug_spec.so building spec/ruby/optional/capi/ext/encoding_spec.so building spec/ruby/optional/capi/ext/enumerator_spec.so building spec/ruby/optional/capi/ext/exception_spec.so building spec/ruby/optional/capi/ext/fiber_spec.so building spec/ruby/optional/capi/ext/file_spec.so building spec/ruby/optional/capi/ext/fixnum_spec.so building spec/ruby/optional/capi/ext/float_spec.so building spec/ruby/optional/capi/ext/gc_spec.so building spec/ruby/optional/capi/ext/globals_spec.so building spec/ruby/optional/capi/ext/hash_spec.so building spec/ruby/optional/capi/ext/integer_spec.so building spec/ruby/optional/capi/ext/io_spec.so building spec/ruby/optional/capi/ext/kernel_spec.so building spec/ruby/optional/capi/ext/language_spec.so building spec/ruby/optional/capi/ext/marshal_spec.so building spec/ruby/optional/capi/ext/module_spec.so building spec/ruby/optional/capi/ext/module_under_autoload_spec.so building spec/ruby/optional/capi/ext/mutex_spec.so building spec/ruby/optional/capi/ext/numeric_spec.so building spec/ruby/optional/capi/ext/object_spec.so building spec/ruby/optional/capi/ext/proc_spec.so building spec/ruby/optional/capi/ext/range_spec.so building spec/ruby/optional/capi/ext/rational_spec.so building spec/ruby/optional/capi/ext/rbasic_spec.so building spec/ruby/optional/capi/ext/regexp_spec.so building spec/ruby/optional/capi/ext/st_spec.so building spec/ruby/optional/capi/ext/string_spec.so building spec/ruby/optional/capi/ext/struct_spec.so building spec/ruby/optional/capi/ext/symbol_spec.so building spec/ruby/optional/capi/ext/thread_spec.so building spec/ruby/optional/capi/ext/time_spec.so building spec/ruby/optional/capi/ext/tracepoint_spec.so building spec/ruby/optional/capi/ext/typed_data_spec.so building spec/ruby/optional/capi/ext/util_spec.so linking ruby make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/encdb.c linking encoding encdb.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/big5.c linking encoding big5.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/cesu_8.c linking encoding cesu_8.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/cp949.c linking encoding cp949.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/emacs_mule.c linking encoding emacs_mule.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/euc_jp.c linking encoding euc_jp.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/euc_kr.c linking encoding euc_kr.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/euc_tw.c linking encoding euc_tw.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/gb2312.c linking encoding gb2312.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/gb18030.c linking encoding gb18030.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/gbk.c linking encoding gbk.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_1.c linking encoding iso_8859_1.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_2.c linking encoding iso_8859_2.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_3.c linking encoding iso_8859_3.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_4.c linking encoding iso_8859_4.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_5.c linking encoding iso_8859_5.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_6.c linking encoding iso_8859_6.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_7.c linking encoding iso_8859_7.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_8.c linking encoding iso_8859_8.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_9.c linking encoding iso_8859_9.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_10.c linking encoding iso_8859_10.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_11.c linking encoding iso_8859_11.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_13.c linking encoding iso_8859_13.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_14.c linking encoding iso_8859_14.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_15.c linking encoding iso_8859_15.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/iso_8859_16.c linking encoding iso_8859_16.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/koi8_r.c linking encoding koi8_r.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/koi8_u.c linking encoding koi8_u.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/shift_jis.c linking encoding shift_jis.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/utf_16be.c linking encoding utf_16be.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/utf_16le.c linking encoding utf_16le.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/utf_32be.c linking encoding utf_32be.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/utf_32le.c linking encoding utf_32le.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_31j.c linking encoding windows_31j.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1250.c linking encoding windows_1250.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1251.c linking encoding windows_1251.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1252.c linking encoding windows_1252.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1253.c linking encoding windows_1253.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1254.c linking encoding windows_1254.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/windows_1257.c linking encoding windows_1257.so make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/transdb.c linking transcoder transdb.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/big5.c linking transcoder big5.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/cesu_8.c linking transcoder cesu_8.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/chinese.c linking transcoder chinese.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/ebcdic.c linking transcoder ebcdic.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/emoji.c linking transcoder emoji.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/emoji_iso2022_kddi.c linking transcoder emoji_iso2022_kddi.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/emoji_sjis_docomo.c linking transcoder emoji_sjis_docomo.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/emoji_sjis_kddi.c linking transcoder emoji_sjis_kddi.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/emoji_sjis_softbank.c linking transcoder emoji_sjis_softbank.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/escape.c linking transcoder escape.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/gb18030.c linking transcoder gb18030.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/gbk.c linking transcoder gbk.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/iso2022.c linking transcoder iso2022.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/japanese.c linking transcoder japanese.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/japanese_euc.c linking transcoder japanese_euc.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/japanese_sjis.c linking transcoder japanese_sjis.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/korean.c linking transcoder korean.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/single_byte.c linking transcoder single_byte.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/utf8_mac.c linking transcoder utf8_mac.so compiling /tmp/ruby/src/trunk-repeat20-asserts/enc/trans/utf_16_32.c linking transcoder utf_16_32.so make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' $$$[end] "make all DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make install DEFS="-DRUBY_DEBUG=1" Update power_assert to 84e85124c5014a139af39161d484156cfe87a9ed echo 84e85124c5014a139af39161d484156cfe87a9ed | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/power_assert.revision unchanged Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-repeat20-asserts/gems/power_assert-2.0.3.gem Successfully built RubyGem Name: power_assert Version: 2.0.4dev File: power_assert-2.0.4dev.gem Update typeprof to b19a6416da3a05d57fadd6ffdadb382b6d236ca5 echo b19a6416da3a05d57fadd6ffdadb382b6d236ca5 | /bin/sh /tmp/ruby/src/trunk-repeat20-asserts/tool/ifchange /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision - /tmp/ruby/src/trunk-repeat20-asserts/.bundle/.timestamp/typeprof.revision unchanged Extracting bundle gem power_assert-2.0.3... Try with hash version of bundled gems instead of gems/power_assert-2.0.3.gem. We don't use this gem with release version of Ruby. Unpacked gems/power_assert-2.0.4dev.gem BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = -DRUBY_DEBUG=1 DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h encdb.h unchanged generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk ext/configure-ext.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' ./miniruby -I/tmp/ruby/src/trunk-repeat20-asserts/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat20-asserts/tool/runruby.rb --extout=.ext -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-repeat20-asserts/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="" --make-flags=" -- DEFS=-DRUBY_DEBUG=1" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="man" --gnumake --install=all --exclude=doc installing binary commands: /tmp/ruby/install/trunk-repeat20-asserts/bin installing base libraries: /tmp/ruby/install/trunk-repeat20-asserts/lib installing arch files: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/3.4.0+0/x86_64-linux installing pkgconfig data: /tmp/ruby/install/trunk-repeat20-asserts/lib/pkgconfig installing extension objects: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/3.4.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/site_ruby/3.4.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/vendor_ruby/3.4.0+0/x86_64-linux installing extension headers: /tmp/ruby/install/trunk-repeat20-asserts/include/ruby-3.4.0+0/x86_64-linux installing extension scripts: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/3.4.0+0 installing extension scripts: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/site_ruby/3.4.0+0 installing extension scripts: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/vendor_ruby/3.4.0+0 installing extension headers: /tmp/ruby/install/trunk-repeat20-asserts/include/ruby-3.4.0+0/ruby installing command scripts: /tmp/ruby/install/trunk-repeat20-asserts/bin installing library scripts: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/3.4.0+0 installing common headers: /tmp/ruby/install/trunk-repeat20-asserts/include/ruby-3.4.0+0 installing manpages: /tmp/ruby/install/trunk-repeat20-asserts/share/man/man1 installing default gems from lib: /tmp/ruby/install/trunk-repeat20-asserts/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.14.0 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.5.0 ostruct 0.6.0 pp 0.5.0 prettyprint 0.2.0 prism 0.30.0 pstore 0.1.3 rdoc 6.7.0 readline 0.0.4 reline 0.5.9 resolv 0.4.0 ruby2_keywords 0.0.5 securerandom 0.3.1 set 1.1.0 shellwords 0.2.0 singleton 0.2.0 syntax_suggest 2.0.0 tempfile 0.2.1 time 0.3.0 timeout 0.4.1 tmpdir 0.2.0 tsort 0.2.0 un 0.3.0 uri 0.13.0 weakref 0.1.3 yaml 0.3.0 installing default gems from ext: /tmp/ruby/install/trunk-repeat20-asserts/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.2 openssl 3.2.0 pathname 0.3.0 psych 5.1.2 stringio 3.1.2 strscan 3.1.1 zlib 3.1.0 installing bundled gems: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/gems/3.4.0+0 minitest 5.24.1 rake 13.2.1 test-unit 3.6.2 rexml 3.3.1 rss 0.3.0 net-ftp 0.3.7 net-imap 0.4.14 net-pop 0.1.2 net-smtp 0.5.0 matrix 0.4.2 prime 0.1.2 rbs 3.5.2 typeprof 0.21.11 debug 1.9.2 racc 1.8.0 mutex_m 0.2.0 getoptlong 0.2.1 base64 0.2.0 bigdecimal 3.1.8 observer 0.1.2 abbrev 0.1.2 resolv-replace 0.1.1 rinda 0.2.0 drb 2.2.1 nkf 0.2.0 syslog 0.1.2 csv 3.3.0 installing bundled gem cache: /tmp/ruby/install/trunk-repeat20-asserts/lib/ruby/gems/3.4.0+0/cache skipped bundled gems: power_assert-2.0.4dev.gem not found in bundled_gems $$$[end] "make install DEFS=\"-DRUBY_DEBUG=1\"" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j4' PASS all 1975 tests $$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0. $$$[beg] make yes-test-basic TESTS=--repeat-count=20 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Checking leaked global symbols...none /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:condition ..OK 2 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:if/unless ...OK 3 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:case .....OK 5 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:while/until ........OK 8 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:exception ..........OK 10 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:array .......................................OK 39 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:hash ...........................OK 27 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:iterator ...........................................................................................................OK 107 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:float ................................................................................OK 80 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:bignum ...............................OK 31 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:string & char ..............................................................OK 62 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:assignment ..........OK 10 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:call ......OK 6 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:proc .........OK 9 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:signal ..OK 2 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:eval ...........................OK 27 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:system ........OK 8 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:const .....OK 5 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:clone .....OK 5 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:marshal ....OK 4 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:pack ....OK 4 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:math ..OK 2 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:struct ......OK 6 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:variable ............OK 12 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:trace ...OK 3 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:defined? ............OK 12 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:alias ......OK 6 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:path .......................OK 23 /tmp/ruby/src/trunk-repeat20-asserts/basictest/test.rb:gc ....OK 4 test succeeded $$$[end] "make yes-test-basic TESTS=--repeat-count=20" exit with 0. $$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=20 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' Run options: --seed=40437 "--ruby=./miniruby -I/tmp/ruby/src/trunk-repeat20-asserts/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat20-asserts/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/tmp/ruby/src/trunk-repeat20-asserts/test/.excludes --name=!/memory_leak/ --stderr-on-failure --repeat-count=20 # Running tests: Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 37201> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 40605> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 8 : #<TCPServer:fd 8, AF_INET6, ::1, 34713> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 9 : #<TCPServer:fd 9, AF_INET6, ::1, 37659> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 44185> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 9 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 10 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 9 : #<TCPServer:fd 9, AF_INET6, ::1, 35223> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 41555> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 9 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 10 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 9 : #<TCPServer:fd 9, AF_INET6, ::1, 36325> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 35667> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 9 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 10 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 8 Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 9 : #<TCPSocket:fd 9, AF_INET6, ::1, 45333> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 9 Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 9 : #<TCPSocket:fd 9, AF_INET6, ::1, 38309> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_skip_hostname_verification: 9 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 39985> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 8 : #<TCPServer:fd 8, AF_INET, 0.0.0.0, 44811> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 8 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 8 : #<TCPServer:fd 8, AF_INET, 0.0.0.0, 38609> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 8 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 8 : #<TCPServer:fd 8, AF_INET, 0.0.0.0, 38631> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 9 #<File::Stat dev=0x8, ino=108888912, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(1/20) tests in 1701.905804s, 19.6568 tests/s, 3805.2682 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 36923> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 37651> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 11 : #<TCPServer:fd 11, AF_INET6, ::1, 43557> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 10 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 11 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 37915> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 11 : #<TCPServer:fd 11, AF_INET6, ::1, 33877> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 10 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 11 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 10 : #<TCPServer:fd 10, AF_INET6, ::1, 40445> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 11 : #<TCPServer:fd 11, AF_INET6, ::1, 43153> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 10 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 11 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 8 Leaked thread: TestNetHTTPForceEncoding#test_response_body_encoding_encoding_without_content_type: #<Thread:0x00007f28544d18e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPForceEncoding#test_response_body_encoding_true_without_content_type: 10 Finished thread: TestNetHTTPForceEncoding#test_response_body_encoding_true_without_content_type: #<Thread:0x00007f28544d18e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 10 : #<TCPSocket:fd 10, AF_INET, 127.0.0.1, 40423> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 10 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 10 : #<TCPSocket:fd 10, AF_INET, 127.0.0.1, 42217> Leaked file descriptor: TestOpenURISSL#test_validation_failure: 10 : #<TCPSocket:fd 10, AF_INET, 127.0.0.1, 37805> Closed file descriptor: TestOpenURISSL#test_validation_noverify: 10 Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f27de606dd0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f27de606dd0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 10 : #<TCPSocket:fd 10, AF_INET6, ::1, 36061> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 10 Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 10 : #<TCPSocket:fd 10, AF_INET6, ::1, 42975> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked thread: TestNetHTTPS#test_skip_hostname_verification: #<Thread:0x00007f27de58ff40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_get: #<Thread:0x00007f27de58ff40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f27de58fb80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 36413> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 8 : #<TCPServer:fd 8, AF_INET, 0.0.0.0, 37053> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 11 : #<TCPSocket:fd 11, AF_INET, 127.0.0.1, 37053> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 8 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 11 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 10 : #<TCPSocket:fd 10, AF_INET, 127.0.0.1, 33121> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 10 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 8 : #<TCPServer:fd 8, AF_INET, 0.0.0.0, 35845> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 8 Closed file descriptor: ClassNameCheckTest#test_corrections_include_top_level_class_name: 7 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_get_response: 11 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_post: 10 Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f27d7fd2a80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f27d7fd2a80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 8 #<File::Stat dev=0x8, ino=109623889, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_head: 11 Leaked thread: TestNetHTTP_v1_2_chunked#test_head: #<Thread:0x00007f27d7fdf7d0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_patch: #<Thread:0x00007f27d7fdf7d0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_post: 11 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 10 #<File::Stat dev=0x8, ino=109623925, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 11 #<File::Stat dev=0x8, ino=109631015, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(2/20) tests in 2709.966080s, 12.3452 tests/s, 2392.1502 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 46671> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 37989> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 12 : #<TCPServer:fd 12, AF_INET6, ::1, 35195> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 14 : #<TCPSocket:fd 14, AF_INET6, ::1, 41867> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 14 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 13 : #<TCPServer:fd 13, AF_INET6, ::1, 44963> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 14 : #<TCPServer:fd 14, AF_INET6, ::1, 42897> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 13 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 14 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 13 : #<TCPServer:fd 13, AF_INET6, ::1, 41765> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 14 : #<TCPServer:fd 14, AF_INET6, ::1, 43785> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 13 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 14 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 13 : #<TCPServer:fd 13, AF_INET6, ::1, 39039> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 14 : #<TCPServer:fd 14, AF_INET6, ::1, 44765> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 12 #<File::Stat dev=0x8, ino=110792090, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f2854169f90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f2854169f90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 14 : #<TCPSocket:fd 14, AF_INET6, ::1, 36475> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked thread: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<Thread:0x00007f27dfe5fc90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_max_version: #<Thread:0x00007f27dfe5fc90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_session_reuse_but_expire: #<Thread:0x00007f27dfe56000 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPS#test_session_reuse: 14 Finished thread: TestNetHTTPS#test_session_reuse: #<Thread:0x00007f27dfe56000 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_verify_none: #<Thread:0x00007f27dfea6e20 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_certificate_verify_failure: #<Thread:0x00007f27dfea6e20 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_skip_hostname_verification: 14 : #<TCPSocket:fd 14, AF_INET6, ::1, 35427> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_skip_hostname_verification: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_get: 14 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 34047> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 13 : #<TCPServer:fd 13, AF_INET, 0.0.0.0, 44901> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 13 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 13 : #<TCPServer:fd 13, AF_INET, 0.0.0.0, 46257> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 13 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 13 : #<TCPServer:fd 13, AF_INET, 0.0.0.0, 44861> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 13 #<File::Stat dev=0x8, ino=110881015, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: 15 Closed file descriptor: TestNetHTTP_v1_2#test_set_form: 15 Closed file descriptor: TestNetHTTP_v1_2#test_get__break: 15 Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 14 #<File::Stat dev=0x8, ino=110867392, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(3/20) tests in 2595.927322s, 12.8875 tests/s, 2497.5703 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 42661> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 34279> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 15 : #<TCPServer:fd 15, AF_INET6, ::1, 33347> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 16 : #<TCPServer:fd 16, AF_INET6, ::1, 36137> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 17 : #<TCPServer:fd 17, AF_INET6, ::1, 43057> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 16 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 17 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 16 : #<TCPServer:fd 16, AF_INET6, ::1, 35627> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 17 : #<TCPServer:fd 17, AF_INET6, ::1, 34281> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 16 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 17 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 16 : #<TCPServer:fd 16, AF_INET6, ::1, 38459> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 17 : #<TCPServer:fd 17, AF_INET6, ::1, 43829> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 16 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 17 Closed file descriptor: TestGemUninstaller#test_uninstall_prompt_only_lists_the_dependents_that_prevented_uninstallation: 7 Closed file descriptor: TestGemUninstaller#test_uninstall_prompt_only_lists_the_dependents_that_prevented_uninstallation: 15 Leaked file descriptor: TestNetHTTPS#test_max_version: 15 #<File::Stat dev=0x8, ino=111440807, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_max_version: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 32919> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 16 : #<TCPServer:fd 16, AF_INET, 0.0.0.0, 46699> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 16 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 16 : #<TCPServer:fd 16, AF_INET, 0.0.0.0, 41587> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 16 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 16 : #<TCPServer:fd 16, AF_INET, 0.0.0.0, 37635> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 17 #<File::Stat dev=0x8, ino=111499472, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_post: 16 #<File::Stat dev=0x8, ino=111501495, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(4/20) tests in 2016.992388s, 16.5866 tests/s, 3213.9343 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 34907> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 37765> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 18 : #<TCPServer:fd 18, AF_INET6, ::1, 41065> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 19 : #<TCPServer:fd 19, AF_INET6, ::1, 33369> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 20 : #<TCPServer:fd 20, AF_INET6, ::1, 43163> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 19 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 20 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 19 : #<TCPServer:fd 19, AF_INET6, ::1, 40863> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 20 : #<TCPServer:fd 20, AF_INET6, ::1, 37413> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 19 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 20 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 19 : #<TCPServer:fd 19, AF_INET6, ::1, 39085> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 20 : #<TCPServer:fd 20, AF_INET6, ::1, 41821> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 19 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 20 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 18 Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 19 : #<TCPSocket:fd 19, AF_INET, 127.0.0.1, 38283> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 19 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 19 : #<TCPSocket:fd 19, AF_INET, 127.0.0.1, 40459> Leaked thread: TestNetHTTPS#test_get_SNI: #<Thread:0x00007f27ddb234a0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_timeout_during_SSL_handshake: #<Thread:0x00007f27ddb234a0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_post: #<Thread:0x00007f27ddae25b0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_get_SNI_failure: #<Thread:0x00007f27ddae25b0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 19 : #<TCPSocket:fd 19, AF_INET6, ::1, 34701> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 19 Leaked thread: TestNetHTTPS#test_verify_none: #<Thread:0x00007f27ddafb060 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 19 : #<TCPSocket:fd 19, AF_INET6, ::1, 36627> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Finished thread: TestNetHTTPS#test_certificate_verify_failure: #<Thread:0x00007f27ddafb060 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_skip_hostname_verification: #<Thread:0x00007f27ddaefb10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_get: #<Thread:0x00007f27ddaefb10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f27ddaef960 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 34767> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 18 : #<TCPServer:fd 18, AF_INET, 0.0.0.0, 46367> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 18 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 19 : #<TCPSocket:fd 19, AF_INET, 127.0.0.1, 35345> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 19 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 18 : #<TCPServer:fd 18, AF_INET, 0.0.0.0, 44213> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 18 Closed file descriptor: ClassNameCheckTest#test_corrections_include_top_level_class_name: 7 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_post: 19 Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f27df5a4570 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f27df5a4570 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTP_v1_2_chunked#test_send_request: #<Thread:0x00007f27df5aff10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_set_form: 19 Finished thread: TestNetHTTP_v1_2_chunked#test_set_form: #<Thread:0x00007f27df5aff10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_head: 19 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get__break: 19 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 18 #<File::Stat dev=0x8, ino=112539742, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 19 #<File::Stat dev=0x8, ino=112533062, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2#test_set_form: 21 Closed file descriptor: TestNetHTTP_v1_2#test_head: 21 Leaked thread: TestNetHTTP_v1_2#test_head: #<Thread:0x00007f27df5afd30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2#test_patch: #<Thread:0x00007f27df5afd30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_send_large_POST_request: 21 Closed file descriptor: TestNetHTTP_v1_2#test_get: 21 Leaked thread: TestNetHTTP_v1_2#test_s_start: #<Thread:0x00007f27df5aff70 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPLocalBind#test_bind_to_local_port: 21 Finished(5/20) tests in 2676.116217s, 12.5013 tests/s, 2422.4953 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 44023> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 43743> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 20 : #<TCPServer:fd 20, AF_INET6, ::1, 37965> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 21 : #<TCPServer:fd 21, AF_INET6, ::1, 42515> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 22 : #<TCPServer:fd 22, AF_INET6, ::1, 38783> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 21 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 22 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 21 : #<TCPServer:fd 21, AF_INET6, ::1, 34347> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 22 : #<TCPServer:fd 22, AF_INET6, ::1, 41733> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 21 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 22 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 21 : #<TCPServer:fd 21, AF_INET6, ::1, 39279> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 22 : #<TCPServer:fd 22, AF_INET6, ::1, 40707> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 21 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 22 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 20 Closed file descriptor: TestNetHTTPContinue#test_expect_continue_error_while_waiting: 21 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 21 : #<TCPSocket:fd 21, AF_INET, 127.0.0.1, 38199> Leaked file descriptor: TestOpenURISSL#test_proxy_cacert_file: 23 : #<TCPSocket:fd 23, AF_INET, 127.0.0.1, 57164> Closed file descriptor: TestOpenURISSL#test_ssl_min_version: 23 Leaked file descriptor: TestNetHTTPS#test_max_version: 20 #<File::Stat dev=0x8, ino=113306591, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_max_version: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 37793> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 21 : #<TCPServer:fd 21, AF_INET, 0.0.0.0, 42673> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 21 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 21 : #<TCPServer:fd 21, AF_INET, 0.0.0.0, 37859> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 21 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 21 : #<TCPServer:fd 21, AF_INET, 0.0.0.0, 34177> Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f27dd40e030 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f27dd40e030 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get__implicit_start: 22 Leaked thread: TestNetHTTP_v1_2_chunked#test_head: #<Thread:0x00007f28550c6e40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_patch: #<Thread:0x00007f28550c6e40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get: 22 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get2: 22 #<File::Stat dev=0x8, ino=113386275, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTP_v1_2_chunked#test_get2: #<Thread:0x00007f27de124af0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 22 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 21 #<File::Stat dev=0x8, ino=113393118, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished thread: TestNetHTTP_v1_2_chunked#test_s_start: #<Thread:0x00007f27de124af0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 22 #<File::Stat dev=0x8, ino=113397872, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2#test_get__implicit_start: 24 Finished(6/20) tests in 2267.271966s, 14.7556 tests/s, 2859.5974 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 36245> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 41927> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 23 : #<TCPServer:fd 23, AF_INET6, ::1, 38061> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 24 : #<TCPServer:fd 24, AF_INET6, ::1, 41381> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 25 : #<TCPServer:fd 25, AF_INET6, ::1, 33407> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 24 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 25 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 24 : #<TCPServer:fd 24, AF_INET6, ::1, 36541> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 25 : #<TCPServer:fd 25, AF_INET6, ::1, 39913> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 24 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 25 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 24 : #<TCPServer:fd 24, AF_INET6, ::1, 34557> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 25 : #<TCPServer:fd 25, AF_INET6, ::1, 35769> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 24 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 25 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 23 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_server_close: #<Thread:0x00007f285449ec10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_retry: #<Thread:0x00007f285449ec10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f28543e11c0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 24 Finished thread: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: #<Thread:0x00007f28543e11c0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 23 #<File::Stat dev=0x8, ino=113956943, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTPS#test_max_version: 24 #<File::Stat dev=0x8, ino=113973553, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_max_version: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 39205> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 25 : #<TCPServer:fd 25, AF_INET, 0.0.0.0, 41181> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 25 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 25 : #<TCPServer:fd 25, AF_INET, 0.0.0.0, 34799> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 25 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 25 : #<TCPServer:fd 25, AF_INET, 0.0.0.0, 41123> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 26 #<File::Stat dev=0x8, ino=114021979, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_post: 25 #<File::Stat dev=0x8, ino=114011634, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_set_form: 28 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get__break: 28 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 27 #<File::Stat dev=0x8, ino=114023282, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 28 #<File::Stat dev=0x8, ino=114027702, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(7/20) tests in 2131.448794s, 15.6959 tests/s, 3041.6536 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 40903> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 33299> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 29 : #<TCPServer:fd 29, AF_INET6, ::1, 34461> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 30 : #<TCPServer:fd 30, AF_INET6, ::1, 36737> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 37321> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 30 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 31 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 30 : #<TCPServer:fd 30, AF_INET6, ::1, 33681> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 39303> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 30 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 31 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 30 : #<TCPServer:fd 30, AF_INET6, ::1, 41983> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 42041> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 30 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 31 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 29 Leaked thread: TestNetHTTPContinue#test_expect_continue: #<Thread:0x00007f2855f43f80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPContinue#test_expect_continue_timeout: #<Thread:0x00007f2855f43f80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPContinue#test_expect_continue_error_while_waiting: 30 Closed file descriptor: TestNetHTTPForceEncoding#test_response_body_encoding_true_without_content_type: 30 Closed file descriptor: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: 30 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 30 : #<TCPSocket:fd 30, AF_INET, 127.0.0.1, 40083> Leaked thread: TestNetHTTPS#test_get_SNI: #<Thread:0x00007f27df365560 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_timeout_during_SSL_handshake: #<Thread:0x00007f27df365560 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked thread: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<Thread:0x00007f27dc737a10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPS#test_max_version: 30 Finished thread: TestNetHTTPS#test_max_version: #<Thread:0x00007f27dc737a10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_verify_none: #<Thread:0x00007f27dc73a440 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 30 : #<TCPSocket:fd 30, AF_INET6, ::1, 42161> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Finished thread: TestNetHTTPS#test_certificate_verify_failure: #<Thread:0x00007f27dc73a440 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_skip_hostname_verification: #<Thread:0x00007f285d24fb80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_get: #<Thread:0x00007f285d24fb80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f285d24f9d0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 39777> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 29 : #<TCPServer:fd 29, AF_INET, 0.0.0.0, 41117> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 31 : #<TCPSocket:fd 31, AF_INET, 127.0.0.1, 41117> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 29 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 31 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 29 : #<TCPServer:fd 29, AF_INET, 0.0.0.0, 39055> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 29 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 29 : #<TCPServer:fd 29, AF_INET, 0.0.0.0, 40355> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_get_response: 31 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 29 #<File::Stat dev=0x8, ino=114935823, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_post: 31 Leaked thread: TestNetHTTP_v1_2_chunked#test_get: #<Thread:0x00007f2856befe80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get2: 31 Finished thread: TestNetHTTP_v1_2_chunked#test_get2: #<Thread:0x00007f2856befe80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_post: 31 Closed file descriptor: TestNetHTTP_v1_2#test_set_form: 31 Closed file descriptor: TestNetHTTP_v1_2#test_head: 31 Leaked thread: TestNetHTTP_v1_2#test_head: #<Thread:0x00007f2856befd00 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2#test_patch: #<Thread:0x00007f2856befd00 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_send_large_POST_request: 31 Closed file descriptor: TestNetHTTP_v1_2#test_get: 31 Closed file descriptor: TestNetHTTP_v1_2#test_s_start: 31 Leaked thread: TestNetHTTPLocalBind#test_bind_to_local_port: #<Thread:0x00007f27dc9ffd90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished(8/20) tests in 2551.722398s, 13.1108 tests/s, 2540.3665 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 36225> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 37889> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 30 : #<TCPServer:fd 30, AF_INET6, ::1, 44627> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 37893> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 32 : #<TCPServer:fd 32, AF_INET6, ::1, 39863> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 34 : #<TCPSocket:fd 34, AF_INET6, ::1, 37893> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 31 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 32 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 34 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 42509> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 32 : #<TCPServer:fd 32, AF_INET6, ::1, 44837> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 31 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 32 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 31 : #<TCPServer:fd 31, AF_INET6, ::1, 41463> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 32 : #<TCPServer:fd 32, AF_INET6, ::1, 36417> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 31 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 32 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 30 Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 31 Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 31 : #<TCPSocket:fd 31, AF_INET, 127.0.0.1, 36763> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 31 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 31 : #<TCPSocket:fd 31, AF_INET, 127.0.0.1, 44903> Leaked file descriptor: TestOpenURISSL#test_validation_failure: 31 : #<TCPSocket:fd 31, AF_INET, 127.0.0.1, 36113> Closed file descriptor: TestOpenURISSL#test_validation_noverify: 31 Leaked file descriptor: TestOpenURISSL#test_proxy_cacert_dir: 33 : #<TCPSocket:fd 33, AF_INET, 127.0.0.1, 49528> Closed file descriptor: TestOpenURISSL#test_validation_success: 33 Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f2856f4fdc0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f2856f4fdc0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 31 : #<TCPSocket:fd 31, AF_INET6, ::1, 46451> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 31 Leaked thread: TestNetHTTPS#test_session_reuse_but_expire: #<Thread:0x00007f27dc52a890 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_session_reuse: #<Thread:0x00007f27dc52a890 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 41173> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 30 : #<TCPServer:fd 30, AF_INET, 0.0.0.0, 45099> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 32 : #<TCPSocket:fd 32, AF_INET, 127.0.0.1, 45099> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 30 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 32 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 30 : #<TCPServer:fd 30, AF_INET, 0.0.0.0, 33385> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 30 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 30 : #<TCPServer:fd 30, AF_INET, 0.0.0.0, 40151> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 31 #<File::Stat dev=0x8, ino=115938380, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_set_form_with_file: 32 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_chunked_break: 32 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 30 #<File::Stat dev=0x8, ino=115940608, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_get: 34 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get__break: 33 Closed file descriptor: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: 33 Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 32 #<File::Stat dev=0x8, ino=115941519, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(9/20) tests in 2380.273800s, 14.0551 tests/s, 2723.7047 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 45639> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 38759> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 33 : #<TCPServer:fd 33, AF_INET6, ::1, 44469> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 34 : #<TCPServer:fd 34, AF_INET6, ::1, 45969> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 40929> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 34 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 35 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 34 : #<TCPServer:fd 34, AF_INET6, ::1, 44689> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 45365> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 34 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 35 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 34 : #<TCPServer:fd 34, AF_INET6, ::1, 40691> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 43933> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 34 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 35 Closed file descriptor: TestGemUninstaller#test_uninstall_no_permission: 7 Closed file descriptor: TestGemUninstaller#test_uninstall_no_permission: 33 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f2855667350 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 34 Finished thread: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: #<Thread:0x00007f2855667350 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 34 : #<TCPSocket:fd 34, AF_INET6, ::1, 34699> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 34 Leaked file descriptor: TestNetHTTPS#test_max_version: 33 #<File::Stat dev=0x8, ino=116489981, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_max_version: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 34149> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 34 : #<TCPServer:fd 34, AF_INET, 0.0.0.0, 39681> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 34 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 35 : #<TCPSocket:fd 35, AF_INET, 127.0.0.1, 39373> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 35 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 34 : #<TCPServer:fd 34, AF_INET, 0.0.0.0, 34787> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 34 Closed file descriptor: TestUnicodeNormalize#test_raise_exception_for_non_unicode_encoding: 7 Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f285c628490 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f285c628490 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get2: 35 Finished(10/20) tests in 2111.388328s, 15.8450 tests/s, 3070.5219 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 43609> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 40969> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 34 : #<TCPServer:fd 34, AF_INET6, ::1, 42623> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 34539> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 36 : #<TCPServer:fd 36, AF_INET6, ::1, 45771> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 35 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 36 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 40463> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 36 : #<TCPServer:fd 36, AF_INET6, ::1, 36753> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 35 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 35 : #<TCPServer:fd 35, AF_INET6, ::1, 44381> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 37 : #<TCPServer:fd 37, AF_INET6, ::1, 42575> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 35 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 36 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 37 Closed file descriptor: TestGemUninstaller#test_uninstall_user_install: 7 Closed file descriptor: TestGemUninstaller#test_uninstall_user_install: 34 Leaked thread: TestNetHTTPContinue#test_expect_continue_timeout: #<Thread:0x00007f27de63f9e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPContinue#test_expect_continue_error: 35 Finished thread: TestNetHTTPContinue#test_expect_continue_error: #<Thread:0x00007f27de63f9e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPContinue#test_expect_continue_error_while_waiting: #<Thread:0x00007f27de5b9880 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPContinue#test_expect_continue_error_before_body: #<Thread:0x00007f27de5b9880 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPForceEncoding#test_response_body_encoding_true_without_content_type: 35 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f27de5bfd90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 35 Finished thread: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: #<Thread:0x00007f27de5bfd90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPSwitchingProtocols#test_info: #<Thread:0x00007f27de6c5de0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 35 : #<TCPSocket:fd 35, AF_INET, 127.0.0.1, 46333> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 35 Leaked file descriptor: TestOpenURISSL#test_validation_failure: 35 : #<TCPSocket:fd 35, AF_INET, 127.0.0.1, 34041> Closed file descriptor: TestOpenURISSL#test_validation_noverify: 35 Leaked thread: TestNetHTTPS#test_get_SNI: #<Thread:0x00007f27de3a8740 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_timeout_during_SSL_handshake: #<Thread:0x00007f27de3a8740 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f27de32b100 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f27de32b100 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_post: #<Thread:0x00007f27de33fcb0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 35 : #<TCPSocket:fd 35, AF_INET6, ::1, 35437> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Finished thread: TestNetHTTPS#test_get_SNI_failure: #<Thread:0x00007f27de33fcb0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 35 Leaked thread: TestNetHTTPS#test_session_reuse_but_expire: #<Thread:0x00007f27de327740 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_session_reuse: #<Thread:0x00007f27de327740 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 35 : #<TCPSocket:fd 35, AF_INET6, ::1, 36259> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked thread: TestNetHTTPS#test_skip_hostname_verification: #<Thread:0x00007f27de32fe70 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_get: #<Thread:0x00007f27de32fe70 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f27de32f9f0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 42583> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 34 : #<TCPServer:fd 34, AF_INET, 0.0.0.0, 33459> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 36 : #<TCPSocket:fd 36, AF_INET, 127.0.0.1, 33459> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 34 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 36 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 35 : #<TCPSocket:fd 35, AF_INET, 127.0.0.1, 37087> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 35 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 34 : #<TCPServer:fd 34, AF_INET, 0.0.0.0, 46271> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 34 Closed file descriptor: TestSecureRandom#test_alphanumeric_chars: 7 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_post: 35 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 34 #<File::Stat dev=0x8, ino=117352597, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_head: 36 Leaked thread: TestNetHTTP_v1_2_chunked#test_head: #<Thread:0x00007f27de29fd20 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_patch: #<Thread:0x00007f27de29fd20 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_post: 36 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get: 36 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 36 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 35 #<File::Stat dev=0x8, ino=117351895, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTP_v1_2#test_post: #<Thread:0x00007f27de29fde0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: 37 Finished thread: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: #<Thread:0x00007f27de29fde0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 36 #<File::Stat dev=0x8, ino=117351129, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2#test_set_form: 38 Closed file descriptor: TestNetHTTP_v1_2#test_s_get: 39 Closed file descriptor: TestNetHTTP_v1_2#test_head: 38 Leaked thread: TestNetHTTP_v1_2#test_head: #<Thread:0x00007f27de29ff00 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2#test_patch: #<Thread:0x00007f27de29ff00 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_send_large_POST_request: 38 Closed file descriptor: TestNetHTTP_v1_2#test_s_start: 38 Finished(11/20) tests in 2485.839545s, 13.4582 tests/s, 2607.8835 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 42357> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 32973> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 37 : #<TCPServer:fd 37, AF_INET6, ::1, 32959> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 38 : #<TCPServer:fd 38, AF_INET6, ::1, 46011> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 39 : #<TCPServer:fd 39, AF_INET6, ::1, 36947> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 38 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 39 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 38 : #<TCPServer:fd 38, AF_INET6, ::1, 40969> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 39 : #<TCPServer:fd 39, AF_INET6, ::1, 46517> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 38 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 39 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 38 : #<TCPServer:fd 38, AF_INET6, ::1, 40659> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 39 : #<TCPServer:fd 39, AF_INET6, ::1, 44103> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 41 : #<TCPSocket:fd 41, AF_INET6, ::1, 40659> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 38 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 39 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 41 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 37 Closed file descriptor: TestNetHTTPForceEncoding#test_response_body_encoding_true_without_content_type: 38 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f27de7b4c10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 38 Finished thread: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: #<Thread:0x00007f27de7b4c10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 38 : #<TCPSocket:fd 38, AF_INET, 127.0.0.1, 40355> Leaked file descriptor: TestNetHTTPS#test_max_version: 37 #<File::Stat dev=0x8, ino=118441005, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_max_version: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 39 : #<TCPSocket:fd 39, AF_INET6, ::1, 33863> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_skip_hostname_verification: 39 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 38981> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 38 : #<TCPServer:fd 38, AF_INET, 0.0.0.0, 43983> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 38 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 39 : #<TCPSocket:fd 39, AF_INET, 127.0.0.1, 46273> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 39 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 38 : #<TCPServer:fd 38, AF_INET, 0.0.0.0, 43535> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 38 Closed file descriptor: TestSecureRandom#test_alphanumeric_chars: 7 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_post_form: 39 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 38 #<File::Stat dev=0x8, ino=118490692, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 39 #<File::Stat dev=0x8, ino=118486525, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(12/20) tests in 2507.338844s, 13.3428 tests/s, 2585.6737 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 40891> Closed file descriptor: TestProcess#test_status_quit: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 38001> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 40 : #<TCPServer:fd 40, AF_INET6, ::1, 38063> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 41 : #<TCPServer:fd 41, AF_INET6, ::1, 45013> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 42 : #<TCPServer:fd 42, AF_INET6, ::1, 34399> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 41 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 42 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 41 : #<TCPServer:fd 41, AF_INET6, ::1, 44005> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 42 : #<TCPServer:fd 42, AF_INET6, ::1, 37351> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 41 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 42 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 41 : #<TCPServer:fd 41, AF_INET6, ::1, 40697> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 42 : #<TCPServer:fd 42, AF_INET6, ::1, 46013> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 41 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 42 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 40 Leaked thread: TestNetHTTPForceEncoding#test_response_body_encoding_false: #<Thread:0x00007f27de79e680 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPForceEncoding#test_response_body_encoding_string_without_content_type: 41 Finished thread: TestNetHTTPForceEncoding#test_response_body_encoding_string_without_content_type: #<Thread:0x00007f27de79e680 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 41 : #<TCPSocket:fd 41, AF_INET6, ::1, 43981> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 41 Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 41 : #<TCPSocket:fd 41, AF_INET6, ::1, 42003> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_skip_hostname_verification: 41 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 36209> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 40 : #<TCPServer:fd 40, AF_INET, 0.0.0.0, 46367> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 40 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 40 : #<TCPServer:fd 40, AF_INET, 0.0.0.0, 45945> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 40 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 40 : #<TCPServer:fd 40, AF_INET, 0.0.0.0, 42451> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 41 #<File::Stat dev=0x8, ino=119098941, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 40 #<File::Stat dev=0x8, ino=119099171, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTP_v1_2#test_post: #<Thread:0x00007f2857c82120 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: 43 Finished thread: TestNetHTTP_v1_2#test_timeout_during_HTTP_session: #<Thread:0x00007f2857c82120 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Finished(13/20) tests in 2176.297843s, 15.3724 tests/s, 2978.7917 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 33761> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 41585> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 42 : #<TCPServer:fd 42, AF_INET6, ::1, 39361> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 43 : #<TCPServer:fd 43, AF_INET6, ::1, 44151> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 44 : #<TCPServer:fd 44, AF_INET6, ::1, 33825> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 43 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 44 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 43 : #<TCPServer:fd 43, AF_INET6, ::1, 42199> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 44 : #<TCPServer:fd 44, AF_INET6, ::1, 42273> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 43 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 44 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 43 : #<TCPServer:fd 43, AF_INET6, ::1, 37959> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 44 : #<TCPServer:fd 44, AF_INET6, ::1, 35141> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 43 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 44 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 42 Leaked thread: TestNetHTTPContinue#test_expect_continue: #<Thread:0x00007f28567cb170 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPContinue#test_expect_continue_timeout: #<Thread:0x00007f28567cb170 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPContinue#test_expect_continue_error: 43 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_server_close: #<Thread:0x00007f2855a14a50 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_retry: #<Thread:0x00007f2855a14a50 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed: 42 #<File::Stat dev=0x8, ino=119633210, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTPS#test_post: #<Thread:0x00007f27dea9dd80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 44 : #<TCPSocket:fd 44, AF_INET6, ::1, 40573> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Finished thread: TestNetHTTPS#test_get_SNI_failure: #<Thread:0x00007f27dea9dd80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<Thread:0x00007f27de9dfa60 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_max_version: #<Thread:0x00007f27de9dfa60 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_verify_none: #<Thread:0x00007f27de9f2ff0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPS#test_certificate_verify_failure: 44 Finished thread: TestNetHTTPS#test_certificate_verify_failure: #<Thread:0x00007f27de9f2ff0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f27de9e8e80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 35635> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 43 : #<TCPServer:fd 43, AF_INET, 0.0.0.0, 45473> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 45 : #<TCPSocket:fd 45, AF_INET, 127.0.0.1, 45473> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 43 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 45 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 43 : #<TCPServer:fd 43, AF_INET, 0.0.0.0, 45443> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 43 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 43 : #<TCPServer:fd 43, AF_INET, 0.0.0.0, 39163> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_post: 44 Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f27dc145a50 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f27dc145a50 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_head: 44 Leaked thread: TestNetHTTP_v1_2_chunked#test_head: #<Thread:0x00007f27dc14fce0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_patch: #<Thread:0x00007f27dc14fce0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_post: 44 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get: 44 Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 43 #<File::Stat dev=0x8, ino=119953291, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2#test_s_get_response: 46 Closed file descriptor: TestNetHTTP_v1_2#test_post: 45 Leaked thread: TestNetHTTP_v1_2#test_get__crlf: #<Thread:0x00007f2854cbeea0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_send_request: 45 Finished thread: TestNetHTTP_v1_2#test_send_request: #<Thread:0x00007f2854cbeea0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_head: 45 Leaked thread: TestNetHTTP_v1_2#test_head: #<Thread:0x00007f27dc14fd40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2#test_patch: #<Thread:0x00007f27dc14fd40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTP_v1_2#test_get__break: #<Thread:0x00007f27dedcfa60 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_get: 45 Finished thread: TestNetHTTP_v1_2#test_get: #<Thread:0x00007f27dedcfa60 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Finished(14/20) tests in 2400.741420s, 13.9353 tests/s, 2700.5928 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 35811> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 43073> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 44 : #<TCPServer:fd 44, AF_INET6, ::1, 42563> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 45 : #<TCPServer:fd 45, AF_INET6, ::1, 37071> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 46 : #<TCPServer:fd 46, AF_INET6, ::1, 35087> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 45 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 45 : #<TCPServer:fd 45, AF_INET6, ::1, 42891> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 47 : #<TCPServer:fd 47, AF_INET6, ::1, 33113> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 45 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 47 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 45 : #<TCPServer:fd 45, AF_INET6, ::1, 35195> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 47 : #<TCPServer:fd 47, AF_INET6, ::1, 41769> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 45 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 46 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 47 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 44 Leaked thread: TestSocket#test_accept_loop: #<Thread:0x00007f27dc0455e0 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 sleep> Finished thread: TestSocket#test_unix: #<Thread:0x00007f27dc0455e0 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 dead> Leaked thread: TestSocket#test_accept_loop_multi_port: #<Thread:0x00007f285ccf91d0 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 sleep> Finished thread: TestSocket#test_closed_read: #<Thread:0x00007f285ccf91d0 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 dead> Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_server_close: #<Thread:0x00007f27ded05800 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_retry: #<Thread:0x00007f27ded05800 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 44 #<File::Stat dev=0x8, ino=120963509, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 46 : #<TCPSocket:fd 46, AF_INET6, ::1, 38879> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 46 Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 46 : #<TCPSocket:fd 46, AF_INET6, ::1, 44011> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_skip_hostname_verification: 46 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 33183> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 45 : #<TCPServer:fd 45, AF_INET, 0.0.0.0, 43807> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 45 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 45 : #<TCPServer:fd 45, AF_INET, 0.0.0.0, 39671> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 45 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 45 : #<TCPServer:fd 45, AF_INET, 0.0.0.0, 42727> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 46 #<File::Stat dev=0x8, ino=121032003, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_post: 45 #<File::Stat dev=0x8, ino=121042977, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_get: 49 Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 47 #<File::Stat dev=0x8, ino=121043048, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTP_v1_2#test_get__break: #<Thread:0x00007f27dec729e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2#test_get: #<Thread:0x00007f27dec729e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTP_v1_2#test_get: #<Thread:0x00007f285c85fd30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_get2: 49 Finished thread: TestNetHTTP_v1_2#test_get2: #<Thread:0x00007f285c85fd30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 48 #<File::Stat dev=0x8, ino=121043102, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(15/20) tests in 2492.569755s, 13.4219 tests/s, 2601.0714 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 34733> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 33537> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 49 : #<TCPServer:fd 49, AF_INET6, ::1, 41811> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 50 : #<TCPServer:fd 50, AF_INET6, ::1, 43579> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 51 : #<TCPServer:fd 51, AF_INET6, ::1, 34899> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 50 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 51 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 50 : #<TCPServer:fd 50, AF_INET6, ::1, 39265> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 51 : #<TCPServer:fd 51, AF_INET6, ::1, 41205> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 50 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 51 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 50 : #<TCPServer:fd 50, AF_INET6, ::1, 45743> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 51 : #<TCPServer:fd 51, AF_INET6, ::1, 35387> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 50 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 51 Closed file descriptor: TestGemUninstaller#test_uninstall_keeps_plugins_up_to_date: 7 Closed file descriptor: TestGemUninstaller#test_uninstall_keeps_plugins_up_to_date: 49 Leaked thread: TestSocket#test_accept_loop: #<Thread:0x00007f285dc28b10 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 sleep> Finished thread: TestSocket#test_unix: #<Thread:0x00007f285dc28b10 /tmp/ruby/build/trunk-repeat20-asserts/.ext/common/socket.rb:709 dead> Leaked thread: TestNetHTTPContinue#test_expect_continue_error_while_waiting: #<Thread:0x00007f285420d4c0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPContinue#test_expect_continue_error_before_body: #<Thread:0x00007f285420d4c0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPKeepAlive#test_http_retry_success: #<Thread:0x00007f27dff1fdb0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_server_closed_connection_auto_reconnect: 50 Finished thread: TestNetHTTPKeepAlive#test_server_closed_connection_auto_reconnect: #<Thread:0x00007f27dff1fdb0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 50 : #<TCPSocket:fd 50, AF_INET, 127.0.0.1, 33977> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 49 #<File::Stat dev=0x8, ino=121582355, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked file descriptor: TestNetHTTPS#test_get_SNI_failure: 51 : #<TCPSocket:fd 51, AF_INET6, ::1, 35455> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_get_SNI_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 51 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 33649> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 50 : #<TCPServer:fd 50, AF_INET, 0.0.0.0, 37791> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 50 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 51 : #<TCPSocket:fd 51, AF_INET, 127.0.0.1, 35605> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 51 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 50 : #<TCPServer:fd 50, AF_INET, 0.0.0.0, 42473> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 50 Closed file descriptor: TestSecureRandom#test_alphanumeric_chars: 7 Closed file descriptor: TestNetHTTP_v1_2_chunked#test_s_get_response: 52 Closed file descriptor: TestNetHTTP_v1_2#test_s_get_response: 52 Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 50 #<File::Stat dev=0x8, ino=121658024, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(16/20) tests in 2175.690372s, 15.3767 tests/s, 2979.4699 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 38171> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 43849> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 51 : #<TCPServer:fd 51, AF_INET6, ::1, 41257> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 52 : #<TCPServer:fd 52, AF_INET6, ::1, 39235> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 45093> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 52 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 53 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 52 : #<TCPServer:fd 52, AF_INET6, ::1, 33087> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 35057> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 52 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 53 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 52 : #<TCPServer:fd 52, AF_INET6, ::1, 42557> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 46611> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 52 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 53 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 51 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_server_close: #<Thread:0x00007f28558008e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_retry: #<Thread:0x00007f28558008e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPKeepAlive#test_http_retry_failed: #<Thread:0x00007f28557cfbc0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: 52 Finished thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f28557cfbc0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPKeepAlive#test_server_closed_connection_auto_reconnect: 52 Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 52 : #<TCPSocket:fd 52, AF_INET, 127.0.0.1, 33785> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 52 Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 52 : #<TCPSocket:fd 52, AF_INET, 127.0.0.1, 46679> Leaked file descriptor: TestOpenURISSL#test_validation_failure: 52 : #<TCPSocket:fd 52, AF_INET, 127.0.0.1, 36955> Closed file descriptor: TestOpenURISSL#test_validation_noverify: 52 Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 51 #<File::Stat dev=0x8, ino=122235571, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f285e143a30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f285e143a30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 53 : #<TCPSocket:fd 53, AF_INET6, ::1, 42929> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 53 Leaked thread: TestNetHTTPS#test_session_reuse_but_expire: #<Thread:0x00007f27dc73b5e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_session_reuse: #<Thread:0x00007f27dc73b5e0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_skip_hostname_verification: 53 : #<TCPSocket:fd 53, AF_INET6, ::1, 37061> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_skip_hostname_verification: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_get: 53 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 41327> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 40269> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 54 : #<TCPSocket:fd 54, AF_INET, 127.0.0.1, 40269> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 52 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 54 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 45995> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 52 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 44903> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_get__implicit_start: 53 Leaked thread: TestNetHTTP_v1_2_chunked#test_head: #<Thread:0x00007f27dddf50f0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_patch: #<Thread:0x00007f27dddf50f0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2#test_post: 53 Closed file descriptor: TestNetHTTPLocalBind#test_bind_to_local_port: 53 Finished(17/20) tests in 2472.696793s, 13.5298 tests/s, 2621.6781 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 43485> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 45309> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 52 : #<TCPServer:fd 52, AF_INET6, ::1, 42393> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 41431> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 41153> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 56 : #<TCPSocket:fd 56, AF_INET6, ::1, 41431> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 54 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 56 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 43681> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 36955> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 54 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 43841> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 40297> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 56 : #<TCPSocket:fd 56, AF_INET6, ::1, 43841> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 54 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 56 Closed file descriptor: TestGemUninstaller#test_uninstall_keeps_plugins_up_to_date: 7 Closed file descriptor: TestGemUninstaller#test_uninstall_keeps_plugins_up_to_date: 52 Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 53 Leaked thread: TestNetHTTPS#test_get_SNI: #<Thread:0x00007f27df1f8580 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_timeout_during_SSL_handshake: #<Thread:0x00007f27df1f8580 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPS#test_min_version: #<Thread:0x00007f27dedeb660 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPS#test_post: #<Thread:0x00007f27dedeb660 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPS#test_certificate_verify_failure: 53 : #<TCPSocket:fd 53, AF_INET6, ::1, 44565> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_certificate_verify_failure: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_skip_hostname_verification: 53 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 44695> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 33065> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 52 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 53 : #<TCPSocket:fd 53, AF_INET, 127.0.0.1, 37647> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 53 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 43593> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 52 Closed file descriptor: TestSecureRandom#test_alphanumeric_chars: 7 Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f27d7f482d0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f27d7f482d0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTP_v1_2_chunked#test_head: 53 Finished(18/20) tests in 2546.380445s, 13.1383 tests/s, 2546.0944 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 35999> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 33367> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 52 : #<TCPServer:fd 52, AF_INET6, ::1, 37407> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 34207> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 33799> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 54 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 38685> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 35969> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 54 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 34837> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 45935> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 53 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 54 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 52 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_server_close: #<Thread:0x00007f2855ac1f10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_retry: #<Thread:0x00007f2855ac1f10 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: 53 #<File::Stat dev=0x8, ino=124047996, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_reset_on_new_connection: #<Thread:0x00007f2855d80060 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 53 Finished thread: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: #<Thread:0x00007f2855d80060 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 53 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 38159> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 45407> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 52 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 43315> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 52 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 52 : #<TCPServer:fd 52, AF_INET, 0.0.0.0, 43231> Leaked thread: TestNetHTTP_v1_2_chunked#test_chunked_break: #<Thread:0x00007f285592c580 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTP_v1_2_chunked#test_timeout_during_HTTP_session: #<Thread:0x00007f285592c580 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 52 #<File::Stat dev=0x8, ino=124208382, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, 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> Finished(19/20) tests in 2157.557491s, 15.5060 tests/s, 3005.0152 assertions/s. Leaked file descriptor: HTTPSProxyTest#test_https_proxy_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 127.0.0.1, 41673> Closed file descriptor: TestProcess#test_aspawn_too_long_path: 7 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 7 : #<TCPServer:fd 7, AF_INET6, ::1, 44549> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 53 : #<TCPServer:fd 53, AF_INET6, ::1, 35071> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 33531> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 55 : #<TCPServer:fd 55, AF_INET6, ::1, 37647> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 54 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 55 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 42537> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 55 : #<TCPServer:fd 55, AF_INET6, ::1, 38849> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 54 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 55 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 54 : #<TCPServer:fd 54, AF_INET6, ::1, 37879> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 55 : #<TCPServer:fd 55, AF_INET6, ::1, 41125> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 54 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 55 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 7 Closed file descriptor: TestGemUninstaller#test_path_ok_eh_legacy: 53 Closed file descriptor: TestNetHTTPContinue#test_expect_continue_error: 54 Leaked thread: TestNetHTTPContinue#test_expect_continue_error_while_waiting: #<Thread:0x00007f27de199520 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Finished thread: TestNetHTTPContinue#test_expect_continue_error_before_body: #<Thread:0x00007f27de199520 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed_with_block: 54 Leaked thread: TestNetHTTPKeepAlive#test_keep_alive_get_auto_reconnect: #<Thread:0x00007f27de19a1b0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 54 Finished thread: TestNetHTTPKeepAlive#test_http_retry_success: #<Thread:0x00007f27de19a1b0 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTPKeepAlive#test_server_closed_connection_auto_reconnect: #<Thread:0x00007f27de196b80 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestNetHTTPSIdentityVerifyFailure#test_identity_verify_failure: 54 : #<TCPSocket:fd 54, AF_INET, 127.0.0.1, 39719> Leaked file descriptor: TestOpenURISSL#test_proxy_cacert_dir: 56 : #<TCPSocket:fd 56, AF_INET, 127.0.0.1, 54518> Closed file descriptor: TestOpenURISSL#test_validation_success: 56 Leaked file descriptor: TestNetHTTPS#test_fail_if_verify_hostname_is_true: 54 : #<TCPSocket:fd 54, AF_INET6, ::1, 45225> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_fail_if_verify_hostname_is_true: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_max_version: 54 Leaked file descriptor: TestNetHTTPS#test_skip_hostname_verification: 54 : #<TCPSocket:fd 54, AF_INET6, ::1, 41873> Multiple autoclose IO objects for a file descriptor in: TestNetHTTPS#test_skip_hostname_verification: #<IO:<STDIN>>(autoclose) #<IO:fd 0>(autoclose) Closed file descriptor: TestNetHTTPS#test_get: 54 Leaked thread: TestNetHTTPS#test_get: #<Thread:0x00007f27df44fe30 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection: 7 : #<TCPServer:fd 7, AF_INET, 0.0.0.0, 33313> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 53 : #<TCPServer:fd 53, AF_INET, 0.0.0.0, 38813> Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_nil_ca_cert: 55 : #<TCPSocket:fd 55, AF_INET, 127.0.0.1, 38813> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 53 Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 55 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_insecure_ssl_connection_by_default: 54 : #<TCPSocket:fd 54, AF_INET, 127.0.0.1, 40995> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_connection_allow_verify_none: 54 Leaked file descriptor: TestGemRemoteFetcherLocalSSLServer#test_ssl_client_cert_auth_connection: 53 : #<TCPServer:fd 53, AF_INET, 0.0.0.0, 46575> Closed file descriptor: TestGemRemoteFetcherLocalSSLServer#test_do_not_allow_invalid_client_cert_auth_connection: 53 Closed file descriptor: TestSecureRandom#test_alphanumeric_chars: 7 Closed file descriptor: TestNetHTTP_v1_2#test_post: 54 Leaked thread: TestNetHTTP_v1_2#test_send_request: #<Thread:0x00007f285468fe90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_set_form: 54 Finished thread: TestNetHTTP_v1_2#test_set_form: #<Thread:0x00007f285468fe90 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Leaked thread: TestNetHTTP_v1_2#test_get2: #<Thread:0x00007f2854684f40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 sleep> Closed file descriptor: TestNetHTTP_v1_2#test_s_start: 54 Finished thread: TestNetHTTP_v1_2#test_s_start: #<Thread:0x00007f2854684f40 /tmp/ruby/src/trunk-repeat20-asserts/test/net/http/utils.rb:28 dead> Finished(20/20) tests in 2411.244091s, 13.8746 tests/s, 2688.3836 assertions/s. 669099 tests, 129652517 assertions, 0 failures, 0 errors, 3456 skips ruby -v: ruby 3.4.0dev (2024-07-12T01:21:07Z master fa6bf1da57) [x86_64-linux] $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=20" exit with 0. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS=--repeat-count=20 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat20-asserts/include -I/tmp/ruby/src/trunk-repeat20-asserts -I/tmp/ruby/src/trunk-repeat20-asserts/prism -I/tmp/ruby/src/trunk-repeat20-asserts/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.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=/tmp/ruby/build/trunk-repeat20-asserts/yjit/target/release/' /tmp/ruby/src/trunk-repeat20-asserts/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/racc-1.8.0/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/rbs-3.5.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat20-asserts' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat20-asserts' ruby 3.4.0dev (2024-07-12T01:21:07Z master fa6bf1da57) [x86_64-linux] 0 ............................................................ 60 ............................................................ 120 ............................................................ 180 ............................................................ 240 ............................................................ 300 ............................................................ 360 ............................................................ 420 ............................................................ 480 ............................................................ 540 ............................................................ 600 ............................................................ 660 ............................................................ 720 ............................................................ 780 ............................................................ 840 ............................................................ 900 ............................................................ 960 ............................................................ 1020 ............................................................ 1080 ............................................................ 1140 ............................................................ 1200 ............................................................ 1260 ............................................................ 1320 ............................................................ 1380 ............................................................ 1440 ............................................................ 1500 ............................................................ 1560 ............................................................ 1620 ............................................................ 1680 ............................................................ 1740 ............................................................ 1800 ............................................................ 1860 ............................................................ 1920 ............................................................ 1980 ............................................................ 2040 ............................................................ 2100 ............................................................ 2160 ............................................................ 2220 ............................................................ 2280 ............................................................ 2340 ............................................................ 2400 ............................................................ 2460 ............................................................ 2520 ............................................................ 2580 ............................................................ 2640 ............................................................ 2700 ............................................................ 2760 ............................................................ 2820 ............................................................ 2880 ............................................................ 2940 ............................................................ 3000 ............................................................ 3060 ............................................................ 3120 ............................................................ 3180 ............................................................ 3240 ............................................................ 3300 ............................................................ 3360 ............................................................ 3420 ............. Finished in 266.419971 seconds 3432 files, 32767 examples, 137722 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS=--repeat-count=20" exit with 0.