# Logfile created on 2024-05-30 19:54:11 +0000 by logger.rb/v1.4.3
#<BuildRuby:0x0000560bd92f65a8 @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-O0", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-O0", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-O0", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-O0", @configure_opts=["optflags=-O0"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS='-j4'", @spec_opts="-j", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=10800, @logfile="/home/ko1/ruby/logs/brlog.trunk-O0.20240530-195411", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x0000560bd937b050 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x0000560bd937ae70 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0000560bd937ac90 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-O0.20240530-195411", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-O0.20240530-195411>, @binmode=false, @mon_data=#<Monitor:0x0000560bd937abc8>, @mon_data_owner_object_id=860>>>
$$$[beg] make update-download -j4
tool/config.guess already exists
tool/config.sub already exists
Update power_assert to 84e85124c5014a139af39161d484156cfe87a9ed
Update rbs to ba7872795d5de04adb8ff500c0e6afdc81a041dd
echo 84e85124c5014a139af39161d484156cfe87a9ed | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/power_assert.revision -
Update typeprof to b19a6416da3a05d57fadd6ffdadb382b6d236ca5
echo ba7872795d5de04adb8ff500c0e6afdc81a041dd | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/rbs.revision -
echo b19a6416da3a05d57fadd6ffdadb382b6d236ca5 | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/typeprof.revision -
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/rbs.revision unchanged
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/typeprof.revision unchanged
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/power_assert.revision unchanged
Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-O0/gems/power_assert-2.0.3.gem
  Successfully built RubyGem
  Name: power_assert
  Version: 2.0.4dev
  File: power_assert-2.0.4dev.gem
$$$[end] "make update-download -j4" exit with 0.
$$$[beg] make update-src      -j4
From https://github.com/ruby/ruby
   15501e1..4e36abb  master     -> origin/master
Updating 15501e1..4e36abb
Fast-forward
 .github/workflows/compilers.yml                    |   3 +-
 .github/workflows/prism.yml                        |   2 +-
 lib/bundler.rb                                     |   2 +-
 lib/bundler/settings.rb                            |   3 +-
 lib/prism/ffi.rb                                   |  25 +-
 lib/prism/translation/ruby_parser.rb               |   4 +-
 mini_builtin.c                                     |  47 +-
 prism_compile.c                                    | 310 ++++++++++-
 spec/bundler/bundler/settings_spec.rb              |  14 +-
 spec/bundler/commands/config_spec.rb               |   8 +
 template/prelude.c.tmpl                            |  57 +-
 test/prism/{ => api}/command_line_test.rb          |  10 +-
 test/prism/api/dump_test.rb                        |  56 ++
 test/prism/{ => api}/parse_comments_test.rb        |  14 +-
 test/prism/{ => api}/parse_stream_test.rb          |  11 +-
 test/prism/api/parse_success_test.rb               |  16 +
 test/prism/api/parse_test.rb                       |  66 +++
 test/prism/bom_test.rb                             |   2 +-
 test/prism/encoding/encodings_test.rb              | 101 ++++
 .../encoding/regular_expression_encoding_test.rb   | 131 +++++
 test/prism/encoding/string_encoding_test.rb        | 136 +++++
 test/prism/encoding/symbol_encoding_test.rb        | 108 ++++
 test/prism/encoding_test.rb                        | 577 ---------------------
 test/prism/errors_test.rb                          |   3 +-
 test/prism/fixtures_test.rb                        |  21 +
 test/prism/fuzzer_test.rb                          |  10 +-
 test/prism/heredoc_dedent_test.rb                  | 133 ++++-
 test/prism/lex_test.rb                             |  90 ++++
 test/prism/library_symbols_test.rb                 |   2 -
 test/prism/locals_test.rb                          |  66 +--
 test/prism/magic_comment_test.rb                   | 121 ++++-
 test/prism/newline_offsets_test.rb                 |  22 +
 test/prism/newline_test.rb                         |  27 +-
 test/prism/parse_test.rb                           | 371 -------------
 test/prism/parser_test.rb                          | 186 -------
 test/prism/regexp_test.rb                          |   6 +-
 test/prism/{ => result}/attribute_write_test.rb    |  10 +-
 test/prism/{ => result}/comments_test.rb           |   2 +-
 test/prism/{ => result}/constant_path_node_test.rb |  16 +-
 test/prism/result/equality_test.rb                 |  22 +
 test/prism/result/heredoc_test.rb                  |  19 +
 test/prism/{ => result}/index_write_test.rb        |   2 +-
 test/prism/result/integer_base_flags_test.rb       |  33 ++
 test/prism/{ => result}/integer_parse_test.rb      |   4 +-
 test/prism/result/numeric_value_test.rb            |  21 +
 test/prism/result/overlap_test.rb                  |  43 ++
 test/prism/{ => result}/redundant_return_test.rb   |   2 +-
 .../result/regular_expression_options_test.rb      |  25 +
 .../source_location_test.rb}                       |   6 +-
 test/prism/{ => result}/static_inspect_test.rb     |   2 +-
 test/prism/{ => result}/static_literals_test.rb    |   2 +-
 test/prism/{ => result}/warnings_test.rb           |   3 +-
 test/prism/{ => ruby}/compiler_test.rb             |   2 +-
 test/prism/{ => ruby}/desugar_compiler_test.rb     |   2 +-
 test/prism/{ => ruby}/dispatcher_test.rb           |   2 +-
 test/prism/ruby/location_test.rb                   | 173 ++++++
 test/prism/{ => ruby}/parameters_signature_test.rb |  20 +-
 test/prism/ruby/parser_test.rb                     | 288 ++++++++++
 test/prism/{ => ruby}/pattern_test.rb              |   2 +-
 test/prism/{ => ruby}/reflection_test.rb           |   2 +-
 test/prism/{ => ruby}/ripper_test.rb               |  33 +-
 test/prism/ruby/ruby_parser_test.rb                | 127 +++++
 test/prism/ruby/tunnel_test.rb                     |  26 +
 test/prism/ruby_api_test.rb                        | 307 -----------
 test/prism/ruby_parser_test.rb                     | 135 -----
 test/prism/snapshots_test.rb                       |  73 +++
 test/prism/snippets_test.rb                        |  42 ++
 test/prism/test_helper.rb                          | 213 +++++++-
 test/prism/unescape_test.rb                        |   2 +-
 test/ruby/test_bignum.rb                           |   6 +
 tool/m4/ruby_check_header.m4                       |   2 +-
 71 files changed, 2608 insertions(+), 1822 deletions(-)
 rename test/prism/{ => api}/command_line_test.rb (91%)
 create mode 100644 test/prism/api/dump_test.rb
 rename test/prism/{ => api}/parse_comments_test.rb (54%)
 rename test/prism/{ => api}/parse_stream_test.rb (83%)
 create mode 100644 test/prism/api/parse_success_test.rb
 create mode 100644 test/prism/api/parse_test.rb
 create mode 100644 test/prism/encoding/encodings_test.rb
 create mode 100644 test/prism/encoding/regular_expression_encoding_test.rb
 create mode 100644 test/prism/encoding/string_encoding_test.rb
 create mode 100644 test/prism/encoding/symbol_encoding_test.rb
 delete mode 100644 test/prism/encoding_test.rb
 create mode 100644 test/prism/fixtures_test.rb
 create mode 100644 test/prism/lex_test.rb
 create mode 100644 test/prism/newline_offsets_test.rb
 delete mode 100644 test/prism/parse_test.rb
 delete mode 100644 test/prism/parser_test.rb
 rename test/prism/{ => result}/attribute_write_test.rb (86%)
 rename test/prism/{ => result}/comments_test.rb (99%)
 rename test/prism/{ => result}/constant_path_node_test.rb (78%)
 create mode 100644 test/prism/result/equality_test.rb
 create mode 100644 test/prism/result/heredoc_test.rb
 rename test/prism/{ => result}/index_write_test.rb (98%)
 create mode 100644 test/prism/result/integer_base_flags_test.rb
 rename test/prism/{ => result}/integer_parse_test.rb (90%)
 create mode 100644 test/prism/result/numeric_value_test.rb
 create mode 100644 test/prism/result/overlap_test.rb
 rename test/prism/{ => result}/redundant_return_test.rb (98%)
 create mode 100644 test/prism/result/regular_expression_options_test.rb
 rename test/prism/{location_test.rb => result/source_location_test.rb} (99%)
 rename test/prism/{ => result}/static_inspect_test.rb (98%)
 rename test/prism/{ => result}/static_literals_test.rb (98%)
 rename test/prism/{ => result}/warnings_test.rb (99%)
 rename test/prism/{ => ruby}/compiler_test.rb (94%)
 rename test/prism/{ => ruby}/desugar_compiler_test.rb (99%)
 rename test/prism/{ => ruby}/dispatcher_test.rb (97%)
 create mode 100644 test/prism/ruby/location_test.rb
 rename test/prism/{ => ruby}/parameters_signature_test.rb (85%)
 create mode 100644 test/prism/ruby/parser_test.rb
 rename test/prism/{ => ruby}/pattern_test.rb (98%)
 rename test/prism/{ => ruby}/reflection_test.rb (93%)
 rename test/prism/{ => ruby}/ripper_test.rb (66%)
 create mode 100644 test/prism/ruby/ruby_parser_test.rb
 create mode 100644 test/prism/ruby/tunnel_test.rb
 delete mode 100644 test/prism/ruby_api_test.rb
 delete mode 100644 test/prism/ruby_parser_test.rb
 create mode 100644 test/prism/snapshots_test.rb
 create mode 100644 test/prism/snippets_test.rb
Latest commit hash = 4e36abbab3
$$$[end] "make update-src      -j4" exit with 0.
$$$[beg] make after-update    -j4
generating miniprelude.c
generating golf_prelude.c
golf_prelude.c updated
/tmp/ruby/src/trunk-O0/revision.h updated
generating x86_64-linux-fake.rb
x86_64-linux-fake.rb updated
generating enc.mk
miniprelude.c updated
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
Update power_assert to 84e85124c5014a139af39161d484156cfe87a9ed
Update rbs to ba7872795d5de04adb8ff500c0e6afdc81a041dd
Update typeprof to b19a6416da3a05d57fadd6ffdadb382b6d236ca5
echo 84e85124c5014a139af39161d484156cfe87a9ed | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/power_assert.revision -
echo ba7872795d5de04adb8ff500c0e6afdc81a041dd | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/rbs.revision -
echo b19a6416da3a05d57fadd6ffdadb382b6d236ca5 | /bin/sh /tmp/ruby/src/trunk-O0/tool/ifchange /tmp/ruby/src/trunk-O0/.bundle/.timestamp/typeprof.revision -
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/power_assert.revision unchanged
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/typeprof.revision unchanged
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/rbs.revision unchanged
Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-O0/gems/power_assert-2.0.3.gem
  Successfully built RubyGem
  Name: power_assert
  Version: 2.0.4dev
  File: power_assert-2.0.4dev.gem
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    -j4" exit with 0.
$$$[beg] make miniruby -j4
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O0 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-O0/include -I/tmp/ruby/src/trunk-O0 -I/tmp/ruby/src/trunk-O0/prism -I/tmp/ruby/src/trunk-O0/enc/unicode/15.0.0  
	CPPFLAGS =   
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = -j4 --jobserver-auth=4,5
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-O0/yjit/target/release/' /tmp/ruby/src/trunk-O0/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

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

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

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

generating encdb.h
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/power_assert.revision unchanged
generating enc.mk
/tmp/ruby/src/trunk-O0/.bundle/.timestamp/typeprof.revision unchanged
encdb.h unchanged
Building power_assert@84e85124c5014a139af39161d484156cfe87a9ed to /tmp/ruby/src/trunk-O0/gems/power_assert-2.0.3.gem
making srcs under enc
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
generating transdb.h
  Successfully built RubyGem
  Name: power_assert
  Version: 2.0.4dev
  File: power_assert-2.0.4dev.gem
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
transdb.h unchanged
generating makefiles ext/configure-ext.mk
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
making encs
ext/configure-ext.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/debug-1.9.2/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/racc-1.8.0/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/debug-1.9.2/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/racc-1.8.0/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
./miniruby -I/tmp/ruby/src/trunk-O0/lib -I. -I.ext/common  /tmp/ruby/src/trunk-O0/tool/runruby.rb --extout=.ext  -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-O0/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j4 --jobserver-auth=4,5" --make-flags=" -j4 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="man"  --gnumake --install=all --exclude=doc
Installing to 
installing binary commands:         /tmp/ruby/install/trunk-O0/bin
installing base libraries:          /tmp/ruby/install/trunk-O0/lib
installing arch files:              /tmp/ruby/install/trunk-O0/lib/ruby/3.4.0+0/x86_64-linux
installing pkgconfig data:          /tmp/ruby/install/trunk-O0/lib/pkgconfig
installing extension objects:       /tmp/ruby/install/trunk-O0/lib/ruby/3.4.0+0/x86_64-linux
installing extension objects:       /tmp/ruby/install/trunk-O0/lib/ruby/site_ruby/3.4.0+0/x86_64-linux
installing extension objects:       /tmp/ruby/install/trunk-O0/lib/ruby/vendor_ruby/3.4.0+0/x86_64-linux
installing extension headers:       /tmp/ruby/install/trunk-O0/include/ruby-3.4.0+0/x86_64-linux
installing extension scripts:       /tmp/ruby/install/trunk-O0/lib/ruby/3.4.0+0
installing extension scripts:       /tmp/ruby/install/trunk-O0/lib/ruby/site_ruby/3.4.0+0
installing extension scripts:       /tmp/ruby/install/trunk-O0/lib/ruby/vendor_ruby/3.4.0+0
installing extension headers:       /tmp/ruby/install/trunk-O0/include/ruby-3.4.0+0/ruby
installing command scripts:         /tmp/ruby/install/trunk-O0/bin
installing library scripts:         /tmp/ruby/install/trunk-O0/lib/ruby/3.4.0+0
installing common headers:          /tmp/ruby/install/trunk-O0/include/ruby-3.4.0+0
installing manpages:                /tmp/ruby/install/trunk-O0/share/man/man1
installing default gems from lib:   /tmp/ruby/install/trunk-O0/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.13.1
                                    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.29.0
                                    pstore 0.1.3
                                    rdoc 6.7.0
                                    readline 0.0.4
                                    reline 0.5.8
                                    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-O0/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.1
                                    strscan 3.1.1
                                    zlib 3.1.0
installing bundled gems:            /tmp/ruby/install/trunk-O0/lib/ruby/gems/3.4.0+0
                                    minitest 5.23.1
                                    rake 13.2.1
                                    test-unit 3.6.2
                                    rexml 3.2.8
                                    rss 0.3.0
                                    net-ftp 0.3.4
                                    net-imap 0.4.11
                                    net-pop 0.1.2
                                    net-smtp 0.5.0
                                    matrix 0.4.2
                                    prime 0.1.2
                                    rbs 3.4.4
                                    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-O0/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 -j4" exit with 0.
$$$[beg] make yes-btest TESTOPTS='-q -j4'
PASS all 1936 tests
 
$$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0.
$$$[beg] make yes-test-basic TESTS='-j4'
	BASERUBY = /usr/bin/ruby --disable=gems
	CC = gcc
	LD = ld
	LDSHARED = gcc -shared
	CFLAGS = -O0 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef  
	XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -fPIE -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-O0/include -I/tmp/ruby/src/trunk-O0 -I/tmp/ruby/src/trunk-O0/prism -I/tmp/ruby/src/trunk-O0/enc/unicode/15.0.0  
	CPPFLAGS =   
	DLDFLAGS = -Wl,--compress-debug-sections=zlib -fstack-protector-strong -pie  
	SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread 
	LANG = 
	LC_ALL = 
	LC_CTYPE = 
	MFLAGS = 
	RUSTC = rustc
	YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-O0/yjit/target/release/' /tmp/ruby/src/trunk-O0/yjit/src/lib.rs
gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

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

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

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

# Running tests:

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

Failed tests:
TestEnumerable#test_reverse_each_memory_corruption: Test::Unit::ProxyError: execution of Test::Unit::CoreAssertions#assert_normal_exit expired timeout (10 sec)
TestEnumerable#test_callcc: Test::Unit::PendedError: requires callcc support
TestGCCompact#test_moving_arrays_down_size_pools: Test::Unit::ProxyError: execution of Test::Unit::CoreAssertions#assert_separately expired timeout (10 sec)
TestGCCompact#test_moving_objects_between_size_pools: Test::Unit::ProxyError: execution of Test::Unit::CoreAssertions#assert_separately expired timeout (10 sec)

Retrying...
Finished tests in 1361.312760s, 23.7506 tests/s, 4728.5210 assertions/s.
32332 tests, 6436996 assertions, 0 failures, 0 errors, 325 skips

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

generating enc.mk
generating encdb.h
encdb.h unchanged
making enc
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'enc'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
making srcs under enc
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'srcs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
generating transdb.h
transdb.h unchanged
making trans
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'trans'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
making encs
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'encs'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
generating makefiles ext/configure-ext.mk
ext/configure-ext.mk updated
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
generating makefile exts.mk
exts.mk unchanged
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/coverage'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/coverage'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/date'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/date'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/digest'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/digest'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/digest/sha2'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/digest/sha2'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/fiddle'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/fiddle'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/io/console'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/io/console'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/json'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/json'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/monitor'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/monitor'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/objspace'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/objspace'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/openssl'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/openssl'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/pathname'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/pathname'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/psych'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/psych'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/pty'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/pty'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/ripper'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/ripper'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/rubyvm'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/rubyvm'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/ext/socket'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/ext/socket'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/debug-1.9.2/ext/debug'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/debug-1.9.2/ext/debug'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/nkf-0.2.0/ext/nkf'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/racc-1.8.0/ext/racc/cparse'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/racc-1.8.0/ext/racc/cparse'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/rbs-3.4.4/ext/rbs_extension'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0/.bundle/gems/syslog-0.1.2/ext/syslog'
make[2]: Entering directory '/tmp/ruby/build/trunk-O0'
make[2]: 'ruby' is up to date.
make[2]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
make[1]: Entering directory '/tmp/ruby/build/trunk-O0'
make[1]: Nothing to be done for 'note'.
make[1]: Leaving directory '/tmp/ruby/build/trunk-O0'
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/1-mspec-multi-0
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/2-mspec-multi-1
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/3-mspec-multi-2
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/4-mspec-multi-3
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/5-mspec-multi-4
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/6-mspec-multi-5
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/7-mspec-multi-6
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/8-mspec-multi-7
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/9-mspec-multi-8
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/10-mspec-multi-9
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/11-mspec-multi-10
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/12-mspec-multi-11
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/13-mspec-multi-12
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/14-mspec-multi-13
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/15-mspec-multi-14
$ /tmp/ruby/build/trunk-O0/miniruby -I/tmp/ruby/src/trunk-O0/lib /tmp/ruby/src/trunk-O0/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-O0 --extout=.ext -- /tmp/ruby/src/trunk-O0/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-O0/spec/default.mspec --error-output stderr --debug -fy -o /tmp/rubytest.ouk6bo/16-mspec-multi-15
ruby 3.4.0dev (2024-05-30T19:38:02Z master 4e36abbab3) [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 134.990953 seconds

3430 files, 32641 examples, 130066 expectations, 0 failures, 0 errors, 0 tagged
$$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug -j' TESTS='-j4'" exit with 0.

$ gdb -batch -se /tmp/ruby/build/trunk-O0/ruby -c /tmp/cores/core.1001.3125772.ruby -x gdbscript
[New LWP 3125772]
[New LWP 3125775]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/tmp/ruby/build/trunk-O0/ruby -w --disable=gems -I/tmp/ruby/src/trunk-O0/tool/l'.
Program terminated with signal SIGABRT, Aborted.
#0  uleb128 (p=0x5566703c7660) at /tmp/ruby/src/trunk-O0/addr2line.c:224
224		if (b < 0x80) {
[Current thread is 1 (Thread 0x7f1747dda7c0 (LWP 3125772))]

>>> Threads

  Id   Target Id                           Frame 
* 1    Thread 0x7f1747dda7c0 (LWP 3125772) uleb128 (p=0x5566703c7660) at /tmp/ruby/src/trunk-O0/addr2line.c:224
  2    Thread 0x7f172e7ff640 (LWP 3125775) 0x00007f1747f04fde in epoll_wait (epfd=4, events=0x55666f5d445c <timer_th+28>, maxevents=16, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30

>>> Machine level backtrace


Thread 2 (Thread 0x7f172e7ff640 (LWP 3125775)):
#0  0x00007f1747f04fde in epoll_wait (epfd=4, events=0x55666f5d445c <timer_th+28>, maxevents=16, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30
        sc_ret = -4
        sc_cancel_oldtype = 0
        sc_ret = <optimized out>
#1  0x000055666f0a6a82 in event_wait (vm=0x5566703362a0) at /tmp/ruby/src/trunk-O0/thread_pthread_mn.c:865
        r = 21862
#2  0x000055666f0a6aa6 in timer_thread_polling (vm=0x5566703362a0) at /tmp/ruby/src/trunk-O0/thread_pthread_mn.c:887
        r = -231676340
#3  0x000055666f0a7166 in timer_thread_func (ptr=0x5566703362a0) at /tmp/ruby/src/trunk-O0/thread_pthread.c:3051
        vm = 0x5566703362a0
#4  0x00007f1747e73b43 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
        ret = <optimized out>
        pd = <optimized out>
        out = <optimized out>
        unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140728480493536, 6297688161226536520, 139737541113408, 25, 139737967310928, 140728480493888, -6247690069447592376, -6247779341840337336}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
        not_first_call = <optimized out>
#5  0x00007f1747f04bb4 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:100
No locals.

Thread 1 (Thread 0x7f1747dda7c0 (LWP 3125772)):
#0  uleb128 (p=0x5566703c7660) at /tmp/ruby/src/trunk-O0/addr2line.c:224
        b = 19 '\023'
        r = 0
        s = 0
#1  0x000055666f226c10 in di_skip_records (reader=0x5566703c75e0, errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1483
        v = {as = {ptr = 0x0, uint64 = 0, int64 = 0, addr_idx = 0}, off = 0, at = 0, form = 0, size = 0, type = 0}
        at = 49
        form = 24
#2  0x000055666f227c26 in debug_info_read (reader=0x5566703c75e0, num_traces=40, traces=0x55666f5d7560 <trace>, lines=0x556670f5ddc0, offset=0, errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1906
        die = {pos = 4405986, tag = 5, has_children = 0}
        ranges = {low_pc = 0, high_pc = 0, ranges = 0, low_pc_set = false, high_pc_set = false, ranges_set = false}
        line = {dirname = 0x0, filename = 0x0, path = 0x0, line = 0, base_addr = 0, saddr = 0, sname = 0x0, next = 0x0}
        addr_header = {ptr = 0x0, unit_length = 0, format = 0 '\000', address_size = 0 '\000'}
        rnglists_header = {unit_length = 113, format = 4 '\004', address_size = 8 '\b', offset_entry_count = 0}
#3  0x000055666f228d50 in fill_lines (num_traces=40, traces=0x55666f5d7560 <trace>, check_debuglink=1, objp=0x5566703c7f00, lines=0x556670f5ddc0, offset=0, errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:2216
        reader = {obj = 0x5566704ddc70, file = 0x7f1728cfa000 "\177ELF\002\001\001", current_version = 4 '\004', current_cu = 0x7f1729974203 "\276W\003", current_low_pc = 0, current_str_offsets_base = 0, current_addr_base = 0, current_rnglists_base = 0, debug_line_cu_end = 0x7f1729dd397a "\375>", debug_line_format = 4 '\004', debug_line_version = 4, debug_line_files = 0x7f1729dcc6d3 "function.rs", debug_line_directories = 0x7f1729dcc1c1 "/build/rustc-Oic09u/rustc-1.65.0+dfsg0ubuntu1/library/core/src/ops", p = 0x7f172998177b "Yq", cu_end = 0x7f17299a99c5 "\021_\001", pend = 0x7f1729c83d1b "\001(", q0 = 0x7f1729ca4db5 "\001\021\001%\016\023\005\003\016\020\027\033\016\264B\031\021\001U\027", q = 0x7f1729ca4ea3 "", format = 4, address_size = 8 '\b', level = 17, abbrev_table = {0x7f1748169670 "", 0x7f1729ca4db6 "\021\001%\016\023\005\003\016\020\027\033\016\264B\031\021\001U\027", 0x7f1729ca4dcc "4", 0x7f1729ca4dd7 "\023\001\035\023\003\016\v\v\210\001\017", 0x7f1729ca4de5 "\r", 0x7f1729ca4df3 "\017", 0x7f1729ca4dfe "$", 0x7f1729ca4e09 "9\001\003\016", 0x7f1729ca4e10 "\023\001\003\016\v\v\210\001\017", 0x7f1729ca4e1c ".\001n\016\003\016:\v;\005I\023 \v", 0x7f1729ca4e2d "/", 0x7f1729ca4e36 "\005", 0x7f1729ca4e43 "4", 0x7f1729ca4e53 ".\001\021\001\022\006@\030\061\023", 0x7f1729ca4e60 "\005", 0x7f1729ca4e69 "4", 0x7f1729ca4e72 "\035\001\061\023\021\001\022\006X\vY\005W\v", 0x7f1729ca4e83 "4", 0x7f1729ca4e8c "\035", 0x7f1729ca4e9d "\005", 0x7f1729ca4ea6 "\035\001\061\023\021\001\022\006X\vY\vW\v", 0x7f1729ca4eb7 "\v\001\021\001\022\006", 0x7f1729ca4ec0 ".\001\021\001\022\006@\030n\016\003\016:\v;\005I\023", 0x7f1729ca4ed5 "\005", 0x7f1729ca4ee4 "\005", 0x7f1729ca4ef3 "\035\001\061\023U\027X\vY\005W\v", 0x7f1729ca4f02 "\v\001U\027", 0x7f1729ca4f09 "\035", 0x7f1729ca4f18 "4", 0x7f1729ca4f21 "\035\001\061\023U\027X\vY\vW\v", 0x7f1729ca4f30 "\035", 0x7f1729ca4f3f "\035", 0x7f1729ca4f50 "\005", 0x7f1729ca4f59 "4", 0x7f1729ca4f60 ".\001\021\001\022\006@\030n\016\003\016:\v;\005", 0x7f1729ca4f73 "\v\001", 0x7f1729ca4f78 "4", 0x7f1729ca4f8a ".\001n\016\003\016:\v;\005 \v", 0x7f1729ca4f99 "4", 0x7f1729ca4fa6 "4", 0x7f1729ca4fb6 "4", 0x7f1729ca4fc3 "4", 0x7f1729ca4fd5 "\005", 0x7f1729ca4fe4 "4", 0x7f1729ca4ff3 "\004\001I\023m\031\003\016\v\v\210\001\017", 0x7f1729ca5003 "(", 0x7f1729ca500c ".\001n\016\003\016:\v;\vI\023?\031 \v", 0x7f1729ca501f "\005", 0x7f1729ca502c "4", 0x7f1729ca5035 ".\001n\016\003\016:\v;\vI\023 \v", 0x7f1729ca5046 ".\001n\016\003\016:\v;\v \v", 0x7f1729ca5055 "4", 0x7f1729ca5064 "3\001\025\023", 0x7f1729ca506b "\r", 0x7f1729ca5079 "\031\001\026\v", 0x7f1729ca5080 "\031\001", 0x7f1729ca5085 "\023", 0x7f1729ca5091 "\023", 0x7f1729ca509d "4", 0x7f1729ca50a6 ".\001\003\016:\v;\v \v", 0x7f1729ca50b3 ".\001\003\016:\v;\vI\023 \v", 0x7f1729ca50c2 "\001\001I\023", 0x7f1729ca50c9 "!", 0x7f1729ca50d4 "$", 0x7f1729ca50df "\005", 0x7f1729ca50ec "\005", 0x7f1729ca50f7 "\005", 0x7f1729ca5104 "\005", 0x7f1729ca510f ".\001\021\001\022\006@\030n\016\003\016:\v;\vI\023", 0x7f1729ca5124 "\005", 0x7f1729ca5131 "3\001", 0x7f1729ca5136 "(", 0x7f1729ca513f "\027\001\003\016\v\v\210\001\017", 0x7f1729ca514b "3", 0x7f1729ca5150 "\023\001\003\016<\031\210\001\017", 0x7f1729ca515c "\031\001\026\a", 0x7f1729ca5163 "\017", 0x7f1729ca516c "\025\001I\023", 0x7f1729ca5173 "\005", 0x7f1729ca517a "\025\001", 0x7f1729ca4d3c "4", 0x7f1729ca4d4b "4", 0x7f1729ca4d54 "4", 0x7f1729ca4d63 "4", 0x7f1729ca4d75 ".", 0x7f1729ca4d86 ".\001\003\016:\v;\v \v", 0x7f1729ca4d93 ".\001\003\016:\v;\vI\023 \v", 0x7f1729ca4da2 "\025\001I\023", 0x7f1729ca4da9 "\005", 0x7f1729ca4db0 "\025\001", 0x7f1729ca447d ".\001\021\001\022\006@\030n\016\003\016:\v;\vI\023?\031", 0x7f1729ca4494 "4", 0x7f1729ca44a6 "4", 0x7f1729ca44b8 ".\001\021\001\022\006@\030n\016\003\016:\v;\v", 0x7f1729ca44cb "\005", 0x7f1729ca44d4 "4", 0x7f1729ca44dd ".", 0x7f1729ca44ee "\035\001\061\023\021\001\022\006X\vY\v", 0x7f1729ca44fd "4", 0x7f1729ca450f "\035", 0x7f1729ca451e ".", 0x7f1729ca4531 "\r", 0x7f1729ca453f "\025\001I\023", 0x7f1729ca4546 "\005", 0x7f1729ca454d "\025\001", 0x7f1729ca4552 ".\001\003\016:\v;\v \v", 0x7f1729ca455f ".\001\003\016:\v;\vI\023 \v", 0x7f1729ca2e68 "\025\001I\023", 0x7f1729ca2e6f "\005", 0x7f1729ca2e76 "\025\001", 0x7f1729ca2e7b ".\001\003\016:\v;\v \v", 0x7f1729ca2e88 ".\001\003\016:\v;\vI\023 \v", 0x7f1729ca2e97 ".\001\003\016:\v;\vI\023?\031 \v", 0x7f1729c9aa09 "\005", 0x7f1729c9aa18 ".\001\003\016:\v;\v9\v'\031I\023\021\001\022\a@\030z\031", 0x7f1729c96d16 "!", 0x7f1729c96d1f "\r", 0x7f1729c96d35 ".", 0x7f1729c96d49 "\035\001\061\023\021\001\022\aX!(Y!\225\rW!\020\001\023", 0x7f1729c96d60 "\n", 0x7f1729c96d6d ".", 0x7f1729c96d86 "4", 0x7f1729c96d97 ".", 0x7f1729c96daf ".\001?\031\003\016:!6;\v9!\001'\031\021\001\022\a@\030|\031\001\023", 0x7f1729c96dcc ".", 0x7f1729c96de6 ".\001?\031\003\016:!!;\v9!\001'\031I\023 !\003\064\031\001\023", 0x7f1729c96e02 "\021\001%\016\023\v\003\037\033\037\021\001\022\a\020\027y\027", 0x7f1729c96e17 "\026", 0x7f1729c96e21 "\023\001\003\016\v\v:\v;\v\001\023", 0x7f1729c96e31 "\017", 0x7f1729c96e39 "$", 0x7f1729c96e45 "\026", 0x7f1729c96e53 "&", 0x7f1729c96e59 "\026", 0x7f1729c96e69 "(", 0x7f1729c96e73 "\023\001\003\016\v\v\210\001\v:\v;\005\071\v\001\023", 0x7f1729c96e88 "\025\001I\023\001\023", 0x7f1729c96e92 "\023\001\003\016\v\005\210\001\v:\v;\005\071\v\001\023", 0x7f1729c96ea7 "\027\001\003\016\v\v:\v;\005\071\v\001\023", 0x7f1729c96eb9 "\023\001\003\016\v\005:\v;\v9\v\001\023", 0x7f1729c96ecb "\023\001\v\v\210\001\v:\v;\005\071\v\001\023", 0x7f1729c96ede "\026", 0x7f1729c96ef1 "\r", 0x7f1729c96f05 "\r", 0x7f1729c96f17 "\023\001\v\005:\v;\v9\v\001\023", 0x7f1729c96f27 "!", 0x7f1729c96f2d "4", 0x7f1729c96f3d ".\001?\031\003\016:\v;\v9\v'\031I\023\207\001\031<\031\001\023", 0x7f1729c96f58 ".", 0x7f1729c96f6f ".", 0x7f1729c96f86 ".\001\003\b:\v;\005\071\v'\031I\023\021\001\022\a@\030|\031\001\023", 0x7f1729c96fa2 ".", 0x7f1729c96fbf ".\001?\031\003\016:\v;\005\071\v'\031I\023\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f1729c96fe0 ".\001\003\016:\v;\005\071\v'\031I\023\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f1729c96fff ".", 0x7f1729c97019 ".", 0x7f1729c97035 "4", 0x7f1729c97041 ".", 0x7f1729c9705c ".\001\003\016:\v;\005\071\v'\031 \v\001\023", 0x7f1729c97070 ".\001?\031\003\016:\v;\v9\v'\031\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f1729c9708f ".", 0x7f1729c970aa ".\001?\031\003\016:\v;\v9\v'\031I\023<\031", 0x7f1729c970c0 ".\001\003\016:\v;\v9\v'\031\207\001\031\021\001\022\a@\030z\031\001\023", 0x7f1729c970dd ".\001\003\016:\v;\005\071\v'\031I\023 \v4\031\001\023", 0x7f1729c970f5 ".\001\003\016:\v;\v9\v'\031I\023\021\001\022\a@\030z\031", 0x7ffde716f450 "", 0x5566703c7b68 "\\p\311)\027\177", 0x5566703c82e8 "", 0x5566703c82f0 "\260\333\365pfU", 0x5566703c82f8 "\005", 0x5566703c8300 "\340\214\377G\027\177", 0x7ffde716f458 "p\035\362nfU", 0x7ffde716f460 "\220\364\026\347\375\177", 0x7ffde716f468 "", 0x7ffde716f470 "", 0x7ffde716f478 "\225\035\362nfU", 0x0, 0x7ffde716f480 "\210\364\026\347\375\177", 0x55666ef21d95 <_start+37> "\364f.\017\037\204", 0x0, 0x0, 0x0, 0x55666ef21d70 <_start> "\363\017\036\372\061\355I\211\321^H\211\342H\203\344\360PTE1\300\061\311H\215=\265\003", 0x4000000000000000 <error: Cannot access memory at address 0x4000000000000000>, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff1b <error: Cannot access memory at address 0x1ff1b>, 0x5566703c7ca0 "P\203<pfU", 0x5566703c7f40 "\220\177<pfU", 0x7f1747f12cb5 <backtrace_helper+85> "\213S\030\205\322~\021H\213\vHc\362H\213<\361H9|\361\370t\033H\211C\020\203\302\001\211S\030;S\034t\022[1\300A\\]\303\017\037D", 0x5566703c7ca0 "P\203<pfU", 0x5566703c7d90 "", 0x5566703c7f40 "\220\177<pfU", 0x7f174801e994 <_Unwind_Backtrace+212> "\205\300\017\204d\377\377\377A\277\003", 0x5566703c8350 "\020\344\063pfU", 0x5566703c8348 "\370\216\335G\027\177", 0x5566703c8358 "\260\333\365pfU"...}}
        i = 0
        j = 296
        shstr = 0x7f172a90ed3d ""
        ehdr = 0x7f1728cfa000
        shdr = 0x7f172a90ef30
        shstr_shdr = 0x7f172a90fab0
        gnu_debuglink_shdr = 0x0
        note_gnu_build_id = 0x7f172a90eff0
        fd = 5
        filesize = 29448944
        file = 0x7f1728cfa000 "\177ELF\002\001\001"
        symtab_shdr = 0x7f172a90fa30
        strtab_shdr = 0x7f172a90fa70
        dynsym_shdr = 0x7f172a90f0b0
        dynstr_shdr = 0x7f172a90f0f0
        obj = 0x5566704ddc70
        dladdr_fbase = 93898436079616
#4  0x000055666f2296fb in rb_dump_backtrace_with_lines (num_traces=40, traces=0x55666f5d7560 <trace>, errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:2625
        addr = 139737966677752
        i = 0
        lines = 0x556670f5ddc0
        obj = 0x5566704ddc70
        dladdr_fbases = 0x556670633e20
        main_path = 0x5566703c7ea0 "/tmp/ruby/build/trunk-O0/ruby"
        len = 29
#5  0x000055666f125f2c in rb_print_backtrace (errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/vm_dump.c:822
        trace = {0x55666f125f11 <rb_print_backtrace+36>, 0x55666f126634 <rb_vm_bugreport+656>, 0x55666f2f5889 <rb_bug_for_fatal_signal+327>, 0x55666f068200 <sigill>, 0x7f1747e21520 <__restore_rt>, 0x55666f0f4165 <vm_cfp_consistent_p+23>, 0x55666f0f441e <vm_call_cfunc_with_frame_+570>, 0x55666f0f4679 <vm_call_cfunc_with_frame+121>, 0x55666f0faad5 <vm_sendish+502>, 0x55666f102444 <vm_exec_core+15679>, 0x55666f119e15 <rb_vm_exec+320>, 0x55666f116732 <invoke_block+216>, 0x55666f116b58 <invoke_block_from_c_bh+793>, 0x55666f116d52 <vm_yield_with_cref+90>, 0x55666f116d90 <vm_yield+56>, 0x55666f110fad <rb_yield_0+47>, 0x55666f111014 <rb_yield+66>, 0x55666f23321f <select_bang_i+88>, 0x55666ef287cb <rb_ensure+388>, 0x55666f2334a5 <rb_ary_select_bang+159>, 0x55666f23350f <rb_ary_keep_if+84>, 0x55666f0f37fc <ractor_safe_call_cfunc_0+48>, 0x55666f0f4401 <vm_call_cfunc_with_frame_+541>, 0x55666f0f4679 <vm_call_cfunc_with_frame+121>, 0x55666f0f4791 <vm_call_cfunc_other+278>, 0x55666f0f4bc0 <vm_call_cfunc+302>, 0x55666f0f771b <vm_call_method_each_type+289>, 0x55666f0f81c7 <vm_call_method+161>, 0x55666f0f83c9 <vm_call_general+47>, 0x55666f0faad5 <vm_sendish+502>, 0x55666f10228d <vm_exec_core+15240>, 0x55666f119e15 <rb_vm_exec+320>, 0x55666f11ac74 <rb_iseq_eval_main+61>, 0x55666ef269ee <rb_ec_exec_node+296>, 0x55666ef26b5f <ruby_run_node+138>, 0x55666ef2212e <rb_main+76>, 0x55666ef2218f <main+75>, 0x7f1747e08d90 <__libc_start_call_main+128>, 0x7f1747e08e40 <__libc_start_main_impl+128>, 0x55666ef21d95 <_start+37>, 0x0 <repeats 984 times>}
        n = 40
#6  0x000055666f126634 in rb_vm_bugreport (ctx=0x5566703c82c0, errout=0x7f1747ff96a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/vm_dump.c:1151
        cmd = 0x0
        other_runtime_info = other_runtime_info
        vm = 0x5566703362a0
        ec = 0x55667033e410
#7  0x000055666f2f5889 in rb_bug_for_fatal_signal (default_sighandler=0x0, sig=11, ctx=0x5566703c82c0, fmt=0x55666f3d604b "Segmentation fault at %p") at /tmp/ruby/src/trunk-O0/error.c:1108
        pid = -1
        out = 0x7f1747ff96a0 <_IO_2_1_stderr_>
        file = 0x7f172b810b10 "/tmp/ruby/build/trunk-O0/.ext/common/objspace.rb"
        line = 43
#8  0x000055666f068200 in sigsegv (sig=11, info=0x5566703c83f0, ctx=0x5566703c82c0) at /tmp/ruby/src/trunk-O0/signal.c:929
No locals.
#9  <signal handler called>
No locals.
#10 0x000055666f0f4165 in vm_cfp_consistent_p (ec=0x55667033e410, reg_cfp=0x7f1747dd8ef8) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3522
        ov_flags = 2
#11 0x000055666f0f441e in vm_call_cfunc_with_frame_ (ec=0x55667033e410, reg_cfp=0x7f1747dd8ef8, calling=0x7ffde716cf60, argc=2, argv=0x7f1747cd90e0, stack_bottom=0x7f1747cd90d8) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3596
        ci = 0x149100140005
        cc = 0x7f172d63fa60
        val = 139737519163560
        me = 0x7f172bfe9130
        cfunc = 0x5566704cdef8
        recv = 139737541232320
        block_handler = 0
        frame_type = 1431634051
        len = 2
        args = <optimized out>
        args = <optimized out>
#12 0x000055666f0f4679 in vm_call_cfunc_with_frame (ec=0x55667033e410, reg_cfp=0x7f1747dd8ef8, calling=0x7ffde716cf60) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3640
        argc = 2
        stack_bottom = 0x7f1747cd90d8
        argv = 0x7f1747cd90e0
#13 0x000055666f0faad5 in vm_sendish (ec=0x55667033e410, reg_cfp=0x7f1747dd8ef8, cd=0x5566704fcca0, block_handler=0, method_explorer=mexp_search_method) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:5723
        val = 36
        ci = 0x149100140005
        cc = 0x7f172d63fa60
        argc = 2
        recv = 139737541232320
        calling = {cd = 0x5566704fcca0, cc = 0x7f172d63fa60, block_handler = 0, recv = 139737541232320, argc = 2, kw_splat = false, heap_argv = 0}
#14 0x000055666f102444 in vm_exec_core (ec=0x55667033e410) at ../../src/trunk-O0/insns.def:891
        bh = 0
        cd = 0x5566704fcca0
        leaf = false
        val = 139737519163560
        reg_pc = 0x5566704fc850
        reg_cfp = 0x7f1747dd8ef8
        insns_address_table = {0x55666f0fe771 <vm_exec_core+108>, 0x55666f0fe7d3 <vm_exec_core+206>, 0x55666f0fe8e6 <vm_exec_core+481>, 0x55666f0fe9fa <vm_exec_core+757>, 0x55666f0feb98 <vm_exec_core+1171>, 0x55666f0fecc8 <vm_exec_core+1475>, 0x55666f0feeda <vm_exec_core+2005>, 0x55666f0fefec <vm_exec_core+2279>, 0x55666f0ff0c5 <vm_exec_core+2496>, 0x55666f0ff1cc <vm_exec_core+2759>, 0x55666f0ff2d3 <vm_exec_core+3022>, 0x55666f0ff3e1 <vm_exec_core+3292>, 0x55666f0ff4f3 <vm_exec_core+3566>, 0x55666f0ff5c3 <vm_exec_core+3774>, 0x55666f0ff6cc <vm_exec_core+4039>, 0x55666f0ff7c6 <vm_exec_core+4289>, 0x55666f0ff889 <vm_exec_core+4484>, 0x55666f0ff94c <vm_exec_core+4679>, 0x55666f0ff9d5 <vm_exec_core+4816>, 0x55666f0ffa61 <vm_exec_core+4956>, 0x55666f0ffb07 <vm_exec_core+5122>, 0x55666f0ffbdf <vm_exec_core+5338>, 0x55666f0ffcb1 <vm_exec_core+5548>, 0x55666f0ffd83 <vm_exec_core+5758>, 0x55666f0ffe61 <vm_exec_core+5980>, 0x55666f0fff23 <vm_exec_core+6174>, 0x55666f100062 <vm_exec_core+6493>, 0x55666f100108 <vm_exec_core+6659>, 0x55666f1001ed <vm_exec_core+6888>, 0x55666f10031c <vm_exec_core+7191>, 0x55666f1003ed <vm_exec_core+7400>, 0x55666f1004b0 <vm_exec_core+7595>, 0x55666f100573 <vm_exec_core+7790>, 0x55666f10066a <vm_exec_core+8037>, 0x55666f10072c <vm_exec_core+8231>, 0x55666f1007ee <vm_exec_core+8425>, 0x55666f1008e8 <vm_exec_core+8675>, 0x55666f1009c7 <vm_exec_core+8898>, 0x55666f100ab4 <vm_exec_core+9135>, 0x55666f100bc4 <vm_exec_core+9407>, 0x55666f100cbe <vm_exec_core+9657>, 0x55666f100d39 <vm_exec_core+9780>, 0x55666f100dfa <vm_exec_core+9973>, 0x55666f100ee8 <vm_exec_core+10211>, 0x55666f100f98 <vm_exec_core+10387>, 0x55666f101117 <vm_exec_core+10770>, 0x55666f1011f1 <vm_exec_core+10988>, 0x55666f1012dd <vm_exec_core+11224>, 0x55666f10136e <vm_exec_core+11369>, 0x55666f1014c9 <vm_exec_core+11716>, 0x55666f101a83 <vm_exec_core+13182>, 0x55666f101b7f <vm_exec_core+13434>, 0x55666f101c82 <vm_exec_core+13693>, 0x55666f101d6e <vm_exec_core+13929>, 0x55666f101f87 <vm_exec_core+14466>, 0x55666f102079 <vm_exec_core+14708>, 0x55666f10217f <vm_exec_core+14970>, 0x55666f10238a <vm_exec_core+15493>, 0x55666f102541 <vm_exec_core+15932>, 0x55666f102675 <vm_exec_core+16240>, 0x55666f1027ea <vm_exec_core+16613>, 0x55666f10291e <vm_exec_core+16921>, 0x55666f102a93 <vm_exec_core+17294>, 0x55666f102cf0 <vm_exec_core+17899>, 0x55666f102efb <vm_exec_core+18422>, 0x55666f1030b2 <vm_exec_core+18861>, 0x55666f1031d4 <vm_exec_core+19151>, 0x55666f10327b <vm_exec_core+19318>, 0x55666f10333f <vm_exec_core+19514>, 0x55666f103428 <vm_exec_core+19747>, 0x55666f103514 <vm_exec_core+19983>, 0x55666f1035fd <vm_exec_core+20216>, 0x55666f103711 <vm_exec_core+20492>, 0x55666f103838 <vm_exec_core+20787>, 0x55666f103977 <vm_exec_core+21106>, 0x55666f103ab6 <vm_exec_core+21425>, 0x55666f103bf5 <vm_exec_core+21744>, 0x55666f103d34 <vm_exec_core+22063>, 0x55666f103e73 <vm_exec_core+22382>, 0x55666f103fbd <vm_exec_core+22712>, 0x55666f104140 <vm_exec_core+23099>, 0x55666f10427f <vm_exec_core+23418>, 0x55666f1043be <vm_exec_core+23737>, 0x55666f1044fd <vm_exec_core+24056>, 0x55666f10463c <vm_exec_core+24375>, 0x55666f10477b <vm_exec_core+24694>, 0x55666f1048ba <vm_exec_core+25013>, 0x55666f1049f9 <vm_exec_core+25332>, 0x55666f104b38 <vm_exec_core+25651>, 0x55666f104c90 <vm_exec_core+25995>, 0x55666f104e56 <vm_exec_core+26449>, 0x55666f104fdd <vm_exec_core+26840>, 0x55666f105105 <vm_exec_core+27136>, 0x55666f10522d <vm_exec_core+27432>, 0x55666f105350 <vm_exec_core+27723>, 0x55666f105473 <vm_exec_core+28014>, 0x55666f1055a7 <vm_exec_core+28322>, 0x55666f1056e6 <vm_exec_core+28641>, 0x55666f1057d1 <vm_exec_core+28876>, 0x55666f1058d6 <vm_exec_core+29137>, 0x55666f105a0f <vm_exec_core+29450>, 0x55666f105afe <vm_exec_core+29689>, 0x55666f105bed <vm_exec_core+29928>, 0x55666f105cc2 <vm_exec_core+30141>, 0x55666f105d97 <vm_exec_core+30354>, 0x55666f105e13 <vm_exec_core+30478>, 0x55666f105e8f <vm_exec_core+30602>, 0x55666f105ead <vm_exec_core+30632>, 0x55666f105ecb <vm_exec_core+30662>, 0x55666f105ee9 <vm_exec_core+30692>, 0x55666f105f07 <vm_exec_core+30722>, 0x55666f105f25 <vm_exec_core+30752>, 0x55666f105f43 <vm_exec_core+30782>, 0x55666f105f61 <vm_exec_core+30812>, 0x55666f105f7f <vm_exec_core+30842>, 0x55666f105f9d <vm_exec_core+30872>, 0x55666f105fbb <vm_exec_core+30902>, 0x55666f105fd9 <vm_exec_core+30932>, 0x55666f105ff7 <vm_exec_core+30962>, 0x55666f106015 <vm_exec_core+30992>, 0x55666f106033 <vm_exec_core+31022>, 0x55666f106051 <vm_exec_core+31052>, 0x55666f10606f <vm_exec_core+31082>, 0x55666f10608d <vm_exec_core+31112>, 0x55666f1060ab <vm_exec_core+31142>, 0x55666f1060c9 <vm_exec_core+31172>, 0x55666f1060e7 <vm_exec_core+31202>, 0x55666f106105 <vm_exec_core+31232>, 0x55666f106123 <vm_exec_core+31262>, 0x55666f106141 <vm_exec_core+31292>, 0x55666f10615f <vm_exec_core+31322>, 0x55666f10617d <vm_exec_core+31352>, 0x55666f10619b <vm_exec_core+31382>, 0x55666f1061b9 <vm_exec_core+31412>, 0x55666f1061d7 <vm_exec_core+31442>, 0x55666f1061f5 <vm_exec_core+31472>, 0x55666f106213 <vm_exec_core+31502>, 0x55666f106231 <vm_exec_core+31532>, 0x55666f10624f <vm_exec_core+31562>, 0x55666f10626d <vm_exec_core+31592>, 0x55666f10628b <vm_exec_core+31622>, 0x55666f1062a9 <vm_exec_core+31652>, 0x55666f1062c7 <vm_exec_core+31682>, 0x55666f1062e5 <vm_exec_core+31712>, 0x55666f106303 <vm_exec_core+31742>, 0x55666f106321 <vm_exec_core+31772>, 0x55666f10633f <vm_exec_core+31802>, 0x55666f10635d <vm_exec_core+31832>, 0x55666f10637b <vm_exec_core+31862>, 0x55666f106399 <vm_exec_core+31892>, 0x55666f1063b7 <vm_exec_core+31922>, 0x55666f1063d5 <vm_exec_core+31952>, 0x55666f1063f3 <vm_exec_core+31982>, 0x55666f106411 <vm_exec_core+32012>, 0x55666f10642f <vm_exec_core+32042>, 0x55666f10644d <vm_exec_core+32072>, 0x55666f10646b <vm_exec_core+32102>, 0x55666f106489 <vm_exec_core+32132>, 0x55666f1064a7 <vm_exec_core+32162>, 0x55666f1064c5 <vm_exec_core+32192>, 0x55666f1064e3 <vm_exec_core+32222>, 0x55666f106501 <vm_exec_core+32252>, 0x55666f10651f <vm_exec_core+32282>, 0x55666f10653d <vm_exec_core+32312>, 0x55666f10655b <vm_exec_core+32342>, 0x55666f106579 <vm_exec_core+32372>, 0x55666f106597 <vm_exec_core+32402>, 0x55666f1065b5 <vm_exec_core+32432>, 0x55666f1065d3 <vm_exec_core+32462>, 0x55666f1065f1 <vm_exec_core+32492>, 0x55666f10660f <vm_exec_core+32522>, 0x55666f10662d <vm_exec_core+32552>, 0x55666f10664b <vm_exec_core+32582>, 0x55666f106669 <vm_exec_core+32612>, 0x55666f106687 <vm_exec_core+32642>, 0x55666f1066a5 <vm_exec_core+32672>, 0x55666f1066c3 <vm_exec_core+32702>, 0x55666f1066e1 <vm_exec_core+32732>, 0x55666f1066ff <vm_exec_core+32762>, 0x55666f10671d <vm_exec_core+32792>, 0x55666f10673b <vm_exec_core+32822>, 0x55666f106759 <vm_exec_core+32852>, 0x55666f106777 <vm_exec_core+32882>, 0x55666f106795 <vm_exec_core+32912>, 0x55666f1067b3 <vm_exec_core+32942>, 0x55666f1067d1 <vm_exec_core+32972>, 0x55666f106802 <vm_exec_core+33021>, 0x55666f106820 <vm_exec_core+33051>, 0x55666f10683e <vm_exec_core+33081>, 0x55666f10685c <vm_exec_core+33111>, 0x55666f10687a <vm_exec_core+33141>, 0x55666f106898 <vm_exec_core+33171>, 0x55666f1068b6 <vm_exec_core+33201>, 0x55666f1068d4 <vm_exec_core+33231>, 0x55666f1068f2 <vm_exec_core+33261>, 0x55666f106910 <vm_exec_core+33291>, 0x55666f10692e <vm_exec_core+33321>, 0x55666f10694c <vm_exec_core+33351>, 0x55666f10696a <vm_exec_core+33381>, 0x55666f106988 <vm_exec_core+33411>...}
#15 0x000055666f119e15 in rb_vm_exec (ec=0x55667033e410) at /tmp/ruby/src/trunk-O0/vm.c:2560
        _ec = 0x55667033e410
        _tag = {tag = 36, retval = 4, buf = {0x7ffde716dc90, 0x55666f119d93 <rb_vm_exec+190>, 0x0, 0x7ffde716dbe0, 0x7ffde716dc80}, prev = 0x7ffde716dfa0, state = RUBY_TAG_NONE, lock_rec = 0}
        state = RUBY_TAG_NONE
        result = 36
#16 0x000055666f116732 in invoke_block (ec=0x55667033e410, iseq=0x7f172bfe87f8, self=139737541365280, captured=0x7f1747dd8fb8, cref=0x0, type=572653569, opt_pc=0) at /tmp/ruby/src/trunk-O0/vm.c:1517
        arg_size = 1
#17 0x000055666f116b58 in invoke_iseq_block_from_c (me=0x0, is_lambda=0, cref=0x0, passed_block_handler=0, kw_splat=0, argv=0x7ffde716dec8, argc=1, self=139737541365280, captured=0x7f1747dd8fb8, ec=0x55667033e410) at /tmp/ruby/src/trunk-O0/vm.c:1587
        iseq = 0x7f172bfe87f8
        opt_pc = 0
        type = 572653569
        cfp = 0x7f1747dd8f68
        sp = 0x7f1747cd9070
        flags = 0
        use_argv = 0x7ffde716dec8
        av = {93898438229137, 139737966677864}
        stack_argv = 0x7f1747cd9070
#18 invoke_block_from_c_bh (ec=0x55667033e410, block_handler=139737966677945, argc=1, argv=0x7ffde716dec8, kw_splat=0, passed_block_handler=0, cref=0x0, is_lambda=0, force_blockarg=0) at /tmp/ruby/src/trunk-O0/vm.c:1605
        captured = 0x7f1747dd8fb8
#19 0x000055666f116d52 in vm_yield_with_cref (ec=0x55667033e410, argc=1, argv=0x7ffde716dec8, kw_splat=0, cref=0x0, is_lambda=0) at /tmp/ruby/src/trunk-O0/vm.c:1642
No locals.
#20 0x000055666f116d90 in vm_yield (ec=0x55667033e410, argc=1, argv=0x7ffde716dec8, kw_splat=0) at /tmp/ruby/src/trunk-O0/vm.c:1650
No locals.
#21 0x000055666f110fad in rb_yield_0 (argc=1, argv=0x7ffde716dec8) at /tmp/ruby/src/trunk-O0/vm_eval.c:1346
No locals.
#22 0x000055666f111014 in rb_yield (val=139737505079280) at /tmp/ruby/src/trunk-O0/vm_eval.c:1362
No locals.
#23 0x000055666f23321f in select_bang_i (a=140728480489536) at /tmp/ruby/src/trunk-O0/array.c:3850
        v = 139737505079280
        arg = 0x7ffde716e040
        ary = 139737541311400
        i1 = 12941
        i2 = 12941
#24 0x000055666ef287cb in rb_ensure (b_proc=0x55666f2331c7 <select_bang_i>, data1=140728480489536, e_proc=0x55666f2332a1 <select_bang_ensure>, data2=140728480489536) at /tmp/ruby/src/trunk-O0/eval.c:1000
        _ec = 0x55667033e410
        _tag = {tag = 36, retval = 139737541311400, buf = {0x7ffde716e020, 0x55666ef2876e <rb_ensure+295>, 0x0, 0x7ffde716df30, 0x7ffde716dff8}, prev = 0x7ffde716f180, state = RUBY_TAG_NONE, lock_rec = 0}
        state = RUBY_TAG_NONE
        result = 4
        errinfo = 139737541311400
        ec = 0x55667033e410
        ensure_list = {next = 0x0, entry = {marker = 0, e_proc = 0x55666f2332a1 <select_bang_ensure>, data2 = 140728480489536}}
#25 0x000055666f2334a5 in rb_ary_select_bang (ary=139737541311400) at /tmp/ruby/src/trunk-O0/array.c:3913
        args = {ary = 139737541311400, len = {12941, 12941}}
#26 0x000055666f23350f in rb_ary_keep_if (ary=139737541311400) at /tmp/ruby/src/trunk-O0/array.c:3938
No locals.
#27 0x000055666f0f37fc in ractor_safe_call_cfunc_0 (recv=139737541311400, argc=0, argv=0x7f1747cd9058, func=0x55666f2334bb <rb_ary_keep_if>) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3410
        f = 0x55666f2334bb <rb_ary_keep_if>
#28 0x000055666f0f4401 in vm_call_cfunc_with_frame_ (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0, argc=0, argv=0x7f1747cd9058, stack_bottom=0x7f1747cd9050) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3594
        ci = 0x353100000001
        cc = 0x7f172d63fba0
        val = 139737522502560
        me = 0x7f172bf6fb50
        cfunc = 0x55667038b198
        recv = 139737541311400
        block_handler = 139737966677945
        frame_type = 1431634051
        len = 0
        args = <optimized out>
        args = <optimized out>
#29 0x000055666f0f4679 in vm_call_cfunc_with_frame (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3640
        argc = 0
        stack_bottom = 0x7f1747cd9050
        argv = 0x7f1747cd9058
#30 0x000055666f0f4791 in vm_call_cfunc_other (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3666
        ci = 0x353100000001
        argv_ary = 0
#31 0x000055666f0f4bc0 in vm_call_cfunc (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:3748
        ci = 0x353100000001
#32 0x000055666f0f771b in vm_call_method_each_type (ec=0x55667033e410, cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:4539
        aset_mask = 32535
        ivar_mask = 1886487096
        ci = 0x353100000001
        cc = 0x7f172d63fba0
        cme = 0x7f172bf6fb50
        v = 139737522502560
#33 0x000055666f0f81c7 in vm_call_method (ec=0x55667033e410, cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:4665
        ci = 0x353100000001
        cc = 0x7f172d63fba0
#34 0x000055666f0f83c9 in vm_call_general (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, calling=0x7ffde716e4d0) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:4709
No locals.
#35 0x000055666f0faad5 in vm_sendish (ec=0x55667033e410, reg_cfp=0x7f1747dd8fa0, cd=0x5566704dd440, block_handler=139737966677945, method_explorer=mexp_search_method) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:5723
        val = 36
        ci = 0x353100000001
        cc = 0x7f172d63fba0
        argc = 0
        recv = 139737541311400
        calling = {cd = 0x5566704dd440, cc = 0x7f172d63fba0, block_handler = 139737966677945, recv = 139737541311400, argc = 0, kw_splat = false, heap_argv = 0}
#36 0x000055666f10228d in vm_exec_core (ec=0x55667033e410) at ../../src/trunk-O0/insns.def:871
        bh = 139737966677945
        cd = 0x5566704dd440
        blockiseq = 0x7f172bfe87f8
        leaf = false
        val = 139737522503240
        reg_pc = 0x5566704d7910
        reg_cfp = 0x7f1747dd8fa0
        insns_address_table = {0x55666f0fe771 <vm_exec_core+108>, 0x55666f0fe7d3 <vm_exec_core+206>, 0x55666f0fe8e6 <vm_exec_core+481>, 0x55666f0fe9fa <vm_exec_core+757>, 0x55666f0feb98 <vm_exec_core+1171>, 0x55666f0fecc8 <vm_exec_core+1475>, 0x55666f0feeda <vm_exec_core+2005>, 0x55666f0fefec <vm_exec_core+2279>, 0x55666f0ff0c5 <vm_exec_core+2496>, 0x55666f0ff1cc <vm_exec_core+2759>, 0x55666f0ff2d3 <vm_exec_core+3022>, 0x55666f0ff3e1 <vm_exec_core+3292>, 0x55666f0ff4f3 <vm_exec_core+3566>, 0x55666f0ff5c3 <vm_exec_core+3774>, 0x55666f0ff6cc <vm_exec_core+4039>, 0x55666f0ff7c6 <vm_exec_core+4289>, 0x55666f0ff889 <vm_exec_core+4484>, 0x55666f0ff94c <vm_exec_core+4679>, 0x55666f0ff9d5 <vm_exec_core+4816>, 0x55666f0ffa61 <vm_exec_core+4956>, 0x55666f0ffb07 <vm_exec_core+5122>, 0x55666f0ffbdf <vm_exec_core+5338>, 0x55666f0ffcb1 <vm_exec_core+5548>, 0x55666f0ffd83 <vm_exec_core+5758>, 0x55666f0ffe61 <vm_exec_core+5980>, 0x55666f0fff23 <vm_exec_core+6174>, 0x55666f100062 <vm_exec_core+6493>, 0x55666f100108 <vm_exec_core+6659>, 0x55666f1001ed <vm_exec_core+6888>, 0x55666f10031c <vm_exec_core+7191>, 0x55666f1003ed <vm_exec_core+7400>, 0x55666f1004b0 <vm_exec_core+7595>, 0x55666f100573 <vm_exec_core+7790>, 0x55666f10066a <vm_exec_core+8037>, 0x55666f10072c <vm_exec_core+8231>, 0x55666f1007ee <vm_exec_core+8425>, 0x55666f1008e8 <vm_exec_core+8675>, 0x55666f1009c7 <vm_exec_core+8898>, 0x55666f100ab4 <vm_exec_core+9135>, 0x55666f100bc4 <vm_exec_core+9407>, 0x55666f100cbe <vm_exec_core+9657>, 0x55666f100d39 <vm_exec_core+9780>, 0x55666f100dfa <vm_exec_core+9973>, 0x55666f100ee8 <vm_exec_core+10211>, 0x55666f100f98 <vm_exec_core+10387>, 0x55666f101117 <vm_exec_core+10770>, 0x55666f1011f1 <vm_exec_core+10988>, 0x55666f1012dd <vm_exec_core+11224>, 0x55666f10136e <vm_exec_core+11369>, 0x55666f1014c9 <vm_exec_core+11716>, 0x55666f101a83 <vm_exec_core+13182>, 0x55666f101b7f <vm_exec_core+13434>, 0x55666f101c82 <vm_exec_core+13693>, 0x55666f101d6e <vm_exec_core+13929>, 0x55666f101f87 <vm_exec_core+14466>, 0x55666f102079 <vm_exec_core+14708>, 0x55666f10217f <vm_exec_core+14970>, 0x55666f10238a <vm_exec_core+15493>, 0x55666f102541 <vm_exec_core+15932>, 0x55666f102675 <vm_exec_core+16240>, 0x55666f1027ea <vm_exec_core+16613>, 0x55666f10291e <vm_exec_core+16921>, 0x55666f102a93 <vm_exec_core+17294>, 0x55666f102cf0 <vm_exec_core+17899>, 0x55666f102efb <vm_exec_core+18422>, 0x55666f1030b2 <vm_exec_core+18861>, 0x55666f1031d4 <vm_exec_core+19151>, 0x55666f10327b <vm_exec_core+19318>, 0x55666f10333f <vm_exec_core+19514>, 0x55666f103428 <vm_exec_core+19747>, 0x55666f103514 <vm_exec_core+19983>, 0x55666f1035fd <vm_exec_core+20216>, 0x55666f103711 <vm_exec_core+20492>, 0x55666f103838 <vm_exec_core+20787>, 0x55666f103977 <vm_exec_core+21106>, 0x55666f103ab6 <vm_exec_core+21425>, 0x55666f103bf5 <vm_exec_core+21744>, 0x55666f103d34 <vm_exec_core+22063>, 0x55666f103e73 <vm_exec_core+22382>, 0x55666f103fbd <vm_exec_core+22712>, 0x55666f104140 <vm_exec_core+23099>, 0x55666f10427f <vm_exec_core+23418>, 0x55666f1043be <vm_exec_core+23737>, 0x55666f1044fd <vm_exec_core+24056>, 0x55666f10463c <vm_exec_core+24375>, 0x55666f10477b <vm_exec_core+24694>, 0x55666f1048ba <vm_exec_core+25013>, 0x55666f1049f9 <vm_exec_core+25332>, 0x55666f104b38 <vm_exec_core+25651>, 0x55666f104c90 <vm_exec_core+25995>, 0x55666f104e56 <vm_exec_core+26449>, 0x55666f104fdd <vm_exec_core+26840>, 0x55666f105105 <vm_exec_core+27136>, 0x55666f10522d <vm_exec_core+27432>, 0x55666f105350 <vm_exec_core+27723>, 0x55666f105473 <vm_exec_core+28014>, 0x55666f1055a7 <vm_exec_core+28322>, 0x55666f1056e6 <vm_exec_core+28641>, 0x55666f1057d1 <vm_exec_core+28876>, 0x55666f1058d6 <vm_exec_core+29137>, 0x55666f105a0f <vm_exec_core+29450>, 0x55666f105afe <vm_exec_core+29689>, 0x55666f105bed <vm_exec_core+29928>, 0x55666f105cc2 <vm_exec_core+30141>, 0x55666f105d97 <vm_exec_core+30354>, 0x55666f105e13 <vm_exec_core+30478>, 0x55666f105e8f <vm_exec_core+30602>, 0x55666f105ead <vm_exec_core+30632>, 0x55666f105ecb <vm_exec_core+30662>, 0x55666f105ee9 <vm_exec_core+30692>, 0x55666f105f07 <vm_exec_core+30722>, 0x55666f105f25 <vm_exec_core+30752>, 0x55666f105f43 <vm_exec_core+30782>, 0x55666f105f61 <vm_exec_core+30812>, 0x55666f105f7f <vm_exec_core+30842>, 0x55666f105f9d <vm_exec_core+30872>, 0x55666f105fbb <vm_exec_core+30902>, 0x55666f105fd9 <vm_exec_core+30932>, 0x55666f105ff7 <vm_exec_core+30962>, 0x55666f106015 <vm_exec_core+30992>, 0x55666f106033 <vm_exec_core+31022>, 0x55666f106051 <vm_exec_core+31052>, 0x55666f10606f <vm_exec_core+31082>, 0x55666f10608d <vm_exec_core+31112>, 0x55666f1060ab <vm_exec_core+31142>, 0x55666f1060c9 <vm_exec_core+31172>, 0x55666f1060e7 <vm_exec_core+31202>, 0x55666f106105 <vm_exec_core+31232>, 0x55666f106123 <vm_exec_core+31262>, 0x55666f106141 <vm_exec_core+31292>, 0x55666f10615f <vm_exec_core+31322>, 0x55666f10617d <vm_exec_core+31352>, 0x55666f10619b <vm_exec_core+31382>, 0x55666f1061b9 <vm_exec_core+31412>, 0x55666f1061d7 <vm_exec_core+31442>, 0x55666f1061f5 <vm_exec_core+31472>, 0x55666f106213 <vm_exec_core+31502>, 0x55666f106231 <vm_exec_core+31532>, 0x55666f10624f <vm_exec_core+31562>, 0x55666f10626d <vm_exec_core+31592>, 0x55666f10628b <vm_exec_core+31622>, 0x55666f1062a9 <vm_exec_core+31652>, 0x55666f1062c7 <vm_exec_core+31682>, 0x55666f1062e5 <vm_exec_core+31712>, 0x55666f106303 <vm_exec_core+31742>, 0x55666f106321 <vm_exec_core+31772>, 0x55666f10633f <vm_exec_core+31802>, 0x55666f10635d <vm_exec_core+31832>, 0x55666f10637b <vm_exec_core+31862>, 0x55666f106399 <vm_exec_core+31892>, 0x55666f1063b7 <vm_exec_core+31922>, 0x55666f1063d5 <vm_exec_core+31952>, 0x55666f1063f3 <vm_exec_core+31982>, 0x55666f106411 <vm_exec_core+32012>, 0x55666f10642f <vm_exec_core+32042>, 0x55666f10644d <vm_exec_core+32072>, 0x55666f10646b <vm_exec_core+32102>, 0x55666f106489 <vm_exec_core+32132>, 0x55666f1064a7 <vm_exec_core+32162>, 0x55666f1064c5 <vm_exec_core+32192>, 0x55666f1064e3 <vm_exec_core+32222>, 0x55666f106501 <vm_exec_core+32252>, 0x55666f10651f <vm_exec_core+32282>, 0x55666f10653d <vm_exec_core+32312>, 0x55666f10655b <vm_exec_core+32342>, 0x55666f106579 <vm_exec_core+32372>, 0x55666f106597 <vm_exec_core+32402>, 0x55666f1065b5 <vm_exec_core+32432>, 0x55666f1065d3 <vm_exec_core+32462>, 0x55666f1065f1 <vm_exec_core+32492>, 0x55666f10660f <vm_exec_core+32522>, 0x55666f10662d <vm_exec_core+32552>, 0x55666f10664b <vm_exec_core+32582>, 0x55666f106669 <vm_exec_core+32612>, 0x55666f106687 <vm_exec_core+32642>, 0x55666f1066a5 <vm_exec_core+32672>, 0x55666f1066c3 <vm_exec_core+32702>, 0x55666f1066e1 <vm_exec_core+32732>, 0x55666f1066ff <vm_exec_core+32762>, 0x55666f10671d <vm_exec_core+32792>, 0x55666f10673b <vm_exec_core+32822>, 0x55666f106759 <vm_exec_core+32852>, 0x55666f106777 <vm_exec_core+32882>, 0x55666f106795 <vm_exec_core+32912>, 0x55666f1067b3 <vm_exec_core+32942>, 0x55666f1067d1 <vm_exec_core+32972>, 0x55666f106802 <vm_exec_core+33021>, 0x55666f106820 <vm_exec_core+33051>, 0x55666f10683e <vm_exec_core+33081>, 0x55666f10685c <vm_exec_core+33111>, 0x55666f10687a <vm_exec_core+33141>, 0x55666f106898 <vm_exec_core+33171>, 0x55666f1068b6 <vm_exec_core+33201>, 0x55666f1068d4 <vm_exec_core+33231>, 0x55666f1068f2 <vm_exec_core+33261>, 0x55666f106910 <vm_exec_core+33291>, 0x55666f10692e <vm_exec_core+33321>, 0x55666f10694c <vm_exec_core+33351>, 0x55666f10696a <vm_exec_core+33381>, 0x55666f106988 <vm_exec_core+33411>...}
#37 0x000055666f119e15 in rb_vm_exec (ec=0x55667033e410) at /tmp/ruby/src/trunk-O0/vm.c:2560
        _ec = 0x55667033e410
        _tag = {tag = 36, retval = 4, buf = {0x7ffde716f200, 0x55666f119d93 <rb_vm_exec+190>, 0x0, 0x7ffde716f150, 0x5566703bee00}, prev = 0x7ffde716f270, state = RUBY_TAG_NONE, lock_rec = 0}
        state = RUBY_TAG_NONE
        result = 36
#38 0x000055666f11ac74 in rb_iseq_eval_main (iseq=0x7f172d753960) at /tmp/ruby/src/trunk-O0/vm.c:2826
        ec = 0x55667033e410
        val = 140728480494208
#39 0x000055666ef269ee in rb_ec_exec_node (ec=0x55667033e410, n=0x7f172d753960) at /tmp/ruby/src/trunk-O0/eval.c:281
        _ec = 0x55667033e410
        _tag = {tag = 36, retval = 93898436403200, buf = {0x7ffde716f2f0, 0x55666ef2699a <rb_ec_exec_node+212>, 0x0, 0x7ffde716f240, 0x55667033e410}, prev = 0x0, state = RUBY_TAG_NONE, lock_rec = 0}
        state = 0
        iseq = 0x7f172d753960
#40 0x000055666ef26b5f in ruby_run_node (n=0x7f172d753960) at /tmp/ruby/src/trunk-O0/eval.c:319
        ec = 0x55667033e410
        status = 21862
#41 0x000055666ef2212e in rb_main (argc=125, argv=0x7ffde716f498) at /tmp/ruby/src/trunk-O0/main.c:40
        variable_in_this_stack_frame = 140728480494448
#42 0x000055666ef2218f in main (argc=125, argv=0x7ffde716f498) at /tmp/ruby/src/trunk-O0/main.c:59
No locals.

>>> Dump Ruby level backtrace (if possible)


$ gdb -batch -se /tmp/ruby/build/trunk-O0/ruby -c /tmp/cores/core.1001.3126189.ruby -x gdbscript
[New LWP 3126189]
[New LWP 3126191]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/tmp/ruby/build/trunk-O0/ruby -w --disable=gems -I/tmp/ruby/src/trunk-O0/tool/l'.
Program terminated with signal SIGABRT, Aborted.
#0  0x000055aaa90bdb1c in di_read_record (reader=0x55aaa9a6b5e0, vp=0x55aaa9a6b2f0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1468
1468	    uint64_t at = uleb128(&reader->q);
[Current thread is 1 (Thread 0x7f7bfe3b87c0 (LWP 3126189))]

>>> Threads

  Id   Target Id                           Frame 
* 1    Thread 0x7f7bfe3b87c0 (LWP 3126189) 0x000055aaa90bdb1c in di_read_record (reader=0x55aaa9a6b5e0, vp=0x55aaa9a6b2f0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1468
  2    Thread 0x7f7be4ddf640 (LWP 3126191) 0x00007f7bfe4e2fde in epoll_wait (epfd=4, events=0x55aaa946b45c <timer_th+28>, maxevents=16, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30

>>> Machine level backtrace


Thread 2 (Thread 0x7f7be4ddf640 (LWP 3126191)):
#0  0x00007f7bfe4e2fde in epoll_wait (epfd=4, events=0x55aaa946b45c <timer_th+28>, maxevents=16, timeout=-1) at ../sysdeps/unix/sysv/linux/epoll_wait.c:30
        sc_ret = -4
        sc_cancel_oldtype = 0
        sc_ret = <optimized out>
#1  0x000055aaa8f3da82 in event_wait (vm=0x55aaa99da2a0) at /tmp/ruby/src/trunk-O0/thread_pthread_mn.c:865
        r = 21930
#2  0x000055aaa8f3daa6 in timer_thread_polling (vm=0x55aaa99da2a0) at /tmp/ruby/src/trunk-O0/thread_pthread_mn.c:887
        r = -1678386401
#3  0x000055aaa8f3e166 in timer_thread_func (ptr=0x55aaa99da2a0) at /tmp/ruby/src/trunk-O0/thread_pthread.c:3051
        vm = 0x55aaa99da2a0
#4  0x00007f7bfe451b43 in start_thread (arg=<optimized out>) at ./nptl/pthread_create.c:442
        ret = <optimized out>
        pd = <optimized out>
        out = <optimized out>
        unwind_buf = {cancel_jmp_buf = {{jmp_buf = {140722692040528, 4164741970713228405, 140170097456704, 25, 140170523646032, 140722692040880, -4090416925534473099, -4090431420633729931}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0, canceltype = 0}}}
        not_first_call = <optimized out>
#5  0x00007f7bfe4e2bb4 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:100
No locals.

Thread 1 (Thread 0x7f7bfe3b87c0 (LWP 3126189)):
#0  0x000055aaa90bdb1c in di_read_record (reader=0x55aaa9a6b5e0, vp=0x55aaa9a6b2f0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1468
        at = 58
        form = 11
#1  0x000055aaa90bea05 in read_abstract_origin (reader=0x55aaa9a6b5e0, form=19, abstract_origin=41481, line=0x55aaa9a6b430, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1871
        v = {as = {ptr = 0x0, uint64 = 0, int64 = 0, addr_idx = 0}, off = 0, at = 0, form = 0, size = 0, type = 0}
        p = 0x7f7be287a477 "0\343\060"
        q = 0x7f7be2af6783 "\021\001\022\006X\vY\005W\v"
        level = 5
        die = {pos = 5126674, tag = 46, has_children = 1}
#2  0x000055aaa90bee01 in debug_info_read (reader=0x55aaa9a6b5e0, num_traces=15, traces=0x55aaa946e560 <trace>, lines=0x55aaaa1dd150, offset=0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:1938
        v = {as = {ptr = 0xa209 <error: Cannot access memory at address 0xa209>, uint64 = 41481, int64 = 41481, addr_idx = 41481}, off = 0, at = 49, form = 19, size = 0, type = 3}
        die = {pos = 5097436, tag = 29, has_children = 1}
        ranges = {low_pc = 0, high_pc = 0, ranges = 0, low_pc_set = false, high_pc_set = false, ranges_set = false}
        line = {dirname = 0x0, filename = 0x0, path = 0x0, line = 0, base_addr = 0, saddr = 0, sname = 0x7f7be2e9ed1a "drop<yjit::backend::ir::Insn, alloc::alloc::Global>", next = 0x0}
        addr_header = {ptr = 0x0, unit_length = 0, format = 0 '\000', address_size = 0 '\000'}
        rnglists_header = {unit_length = 113, format = 4 '\004', address_size = 8 '\b', offset_entry_count = 0}
#3  0x000055aaa90bfd50 in fill_lines (num_traces=15, traces=0x55aaa946e560 <trace>, check_debuglink=1, objp=0x55aaa9a6bf00, lines=0x55aaaa1dd150, offset=0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:2216
        reader = {obj = 0x55aaaa1dd5b0, file = 0x7f7be1b4a000 "\177ELF\002\001\001", current_version = 4 '\004', current_cu = 0x7f7be287749f "N\270\001", current_low_pc = 0, current_str_offsets_base = 0, current_addr_base = 0, current_rnglists_base = 0, debug_line_cu_end = 0x7f7be2c377e4 "\227\035", debug_line_format = 4 '\004', debug_line_version = 4, debug_line_files = 0x7f7be2c34fcd "into_iter.rs", debug_line_directories = 0x7f7be2c3494e "/build/rustc-Oic09u/rustc-1.65.0+dfsg0ubuntu1/library/alloc/src/vec", p = 0x7f7be28816b2 "c\001\001\031\351\222", cu_end = 0x7f7be2892cf1 "\030\340", pend = 0x7f7be2ad3d1b "\001(", q0 = 0x7f7be2af65d4 "\001\021\001%\016\023\005\003\016\020\027\033\016\264B\031\021\001U\027", q = 0x7f7be2af6740 ";\005 \v", format = 4, address_size = 8 '\b', level = 6, abbrev_table = {0x7f7bfe747670 "", 0x7f7be2af65d5 "\021\001%\016\023\005\003\016\020\027\033\016\264B\031\021\001U\027", 0x7f7be2af65eb "4", 0x7f7be2af65f4 "\023\001\035\023\003\016\v\v\210\001\017", 0x7f7be2af6602 "\r", 0x7f7be2af6610 "\017", 0x7f7be2af661b "$", 0x7f7be2af6626 "9\001\003\016", 0x7f7be2af662d "\023\001\003\016\v\v\210\001\017", 0x7f7be2af6639 ".\001n\016\003\016:\v;\005I\023 \v", 0x7f7be2af664a "4", 0x7f7be2af665a "\v\001", 0x7f7be2af665f "4", 0x7f7be2af666c "\005", 0x7f7be2af6679 ".\001n\016\003\016:\v;\vI\023 \v", 0x7f7be2af668a "4", 0x7f7be2af669a "\004\001I\023m\031\003\016\v\v\210\001\017", 0x7f7be2af66aa "(", 0x7f7be2af66b3 "\r", 0x7f7be2af66c4 ".\001n\016\003\016:\v;\005I\023?\031 \v", 0x7f7be2af66d7 "3\001\025\023", 0x7f7be2af66de "\r", 0x7f7be2af66ec "\031\001\026\v", 0x7f7be2af66f3 "\023", 0x7f7be2af66ff "\027\001\003\016\v\v\210\001\017", 0x7f7be2af670b "/", 0x7f7be2af6714 "\027\001\003\016<\031\210\001\017", 0x7f7be2af6720 "\023", 0x7f7be2af672c "\023\001\003\016<\031\210\001\017", 0x7f7be2af6738 ".\001n\016\003\016:\v;\005 \v", 0x7f7be2af6747 "\005", 0x7f7be2af6752 "4", 0x7f7be2af675f ".\001\021\001\022\006@\030n\016\003\016:\v;\005", 0x7f7be2af6772 "\005", 0x7f7be2af677f "\035\001\061\023\021\001\022\006X\vY\005W\v", 0x7f7be2af6790 "\005", 0x7f7be2af6799 "\v\001\021\001\022\006", 0x7f7be2af67a2 "4", 0x7f7be2af67ab "\035\001\061\023\021\001\022\006X\vY\vW\v", 0x7f7be2af67bc "4", 0x7f7be2af67c5 "\005", 0x7f7be2af67ce "\005", 0x7f7be2af67d7 ".\001\021\001\022\006@\030\061\023", 0x7f7be2af67e4 "\035\001\061\023U\027X\vY\005W\v", 0x7f7be2af67f3 "\v\001U\027", 0x7f7be2af67fa "\035", 0x7f7be2af680b "4", 0x7f7be2af6814 "4", 0x7f7be2af681b "\035", 0x7f7be2af682a "\035\001\061\023U\027X\vY\vW\v", 0x7f7be2af6839 "\031\001", 0x7f7be2af683e "3\001", 0x7f7be2af6843 "\005", 0x7f7be2af6850 "3", 0x7f7be2af6855 ".\001n\016\003\016:\v;\v \v", 0x7f7be2af6864 ".\001\003\016:\v;\v \v", 0x7f7be2af6871 ".\001\003\016:\v;\vI\023 \v", 0x7f7be2af6880 ".", 0x7f7be2af6891 "\005", 0x7f7be2af689c ".", 0x7f7be2af68ad "\001\001I\023", 0x7f7be2af68b4 "!", 0x7f7be2af68bf "$", 0x7f7be2af68ca ".\001\021\001\022\006@\030n\016\003\016:\v;\vI\023", 0x7f7be2af68df "\005", 0x7f7be2af68ee ".\001\021\001\022\006@\030n\016\003\016:\v;\005I\023", 0x7f7be2af6903 "\005", 0x7f7be2af6912 "\005", 0x7f7be2af6921 "4", 0x7f7be2af6933 "\035", 0x7f7be2af6944 ".\001\021\001\022\006@\030n\016\003\016:\v;\v", 0x7f7be2af6957 "\005", 0x7f7be2af6966 "4", 0x7f7be2af6978 "4", 0x7f7be2af698a "\035", 0x7f7be2af6999 "\005", 0x7f7be2af69a0 "\017", 0x7f7be2af69a9 "\025\001I\023", 0x7f7be2af69b0 "\005", 0x7f7be2af69b7 "\025\001", 0x7f7be2af65bc ".\001n\016\003\016:\v;\vI\023?\031 \v", 0x7f7be2af65cf "\025\001", 0x7f7be2af5e3e "\025\001I\023", 0x7f7be2af5a12 "!", 0x7f7be2af5a1d "$", 0x7f7be2af5a28 "\017", 0x7f7be2af5a31 "\025\001", 0x7f7be2af5a36 "\005", 0x7f7be2af5a3d "\025\001I\023", 0x7f7be2af4db0 "\025\001", 0x7f7be2af447d ".\001\021\001\022\006@\030n\016\003\016:\v;\vI\023?\031", 0x7f7be2af4494 "4", 0x7f7be2af44a6 "4", 0x7f7be2af44b8 ".\001\021\001\022\006@\030n\016\003\016:\v;\v", 0x7f7be2af44cb "\005", 0x7f7be2af44d4 "4", 0x7f7be2af44dd ".", 0x7f7be2af44ee "\035\001\061\023\021\001\022\006X\vY\v", 0x7f7be2af44fd "4", 0x7f7be2af450f "\035", 0x7f7be2af451e ".", 0x7f7be2af4531 "\r", 0x7f7be2af453f "\025\001I\023", 0x7f7be2af4546 "\005", 0x7f7be2af454d "\025\001", 0x7f7be2af4552 ".\001\003\016:\v;\v \v", 0x7f7be2af455f ".\001\003\016:\v;\vI\023 \v", 0x7f7be2af2e68 "\025\001I\023", 0x7f7be2af2e6f "\005", 0x7f7be2af2e76 "\025\001", 0x7f7be2af2e7b ".\001\003\016:\v;\v \v", 0x7f7be2af2e88 ".\001\003\016:\v;\vI\023 \v", 0x7f7be2af2e97 ".\001\003\016:\v;\vI\023?\031 \v", 0x7f7be2aeaa09 "\005", 0x7f7be2aeaa18 ".\001\003\016:\v;\v9\v'\031I\023\021\001\022\a@\030z\031", 0x7f7be2ae6d16 "!", 0x7f7be2ae6d1f "\r", 0x7f7be2ae6d35 ".", 0x7f7be2ae6d49 "\035\001\061\023\021\001\022\aX!(Y!\225\rW!\020\001\023", 0x7f7be2ae6d60 "\n", 0x7f7be2ae6d6d ".", 0x7f7be2ae6d86 "4", 0x7f7be2ae6d97 ".", 0x7f7be2ae6daf ".\001?\031\003\016:!6;\v9!\001'\031\021\001\022\a@\030|\031\001\023", 0x7f7be2ae6dcc ".", 0x7f7be2ae6de6 ".\001?\031\003\016:!!;\v9!\001'\031I\023 !\003\064\031\001\023", 0x7f7be2ae6e02 "\021\001%\016\023\v\003\037\033\037\021\001\022\a\020\027y\027", 0x7f7be2ae6e17 "\026", 0x7f7be2ae6e21 "\023\001\003\016\v\v:\v;\v\001\023", 0x7f7be2ae6e31 "\017", 0x7f7be2ae6e39 "$", 0x7f7be2ae6e45 "\026", 0x7f7be2ae6e53 "&", 0x7f7be2ae6e59 "\026", 0x7f7be2ae6e69 "(", 0x7f7be2ae6e73 "\023\001\003\016\v\v\210\001\v:\v;\005\071\v\001\023", 0x7f7be2ae6e88 "\025\001I\023\001\023", 0x7f7be2ae6e92 "\023\001\003\016\v\005\210\001\v:\v;\005\071\v\001\023", 0x7f7be2ae6ea7 "\027\001\003\016\v\v:\v;\005\071\v\001\023", 0x7f7be2ae6eb9 "\023\001\003\016\v\005:\v;\v9\v\001\023", 0x7f7be2ae6ecb "\023\001\v\v\210\001\v:\v;\005\071\v\001\023", 0x7f7be2ae6ede "\026", 0x7f7be2ae6ef1 "\r", 0x7f7be2ae6f05 "\r", 0x7f7be2ae6f17 "\023\001\v\005:\v;\v9\v\001\023", 0x7f7be2ae6f27 "!", 0x7f7be2ae6f2d "4", 0x7f7be2ae6f3d ".\001?\031\003\016:\v;\v9\v'\031I\023\207\001\031<\031\001\023", 0x7f7be2ae6f58 ".", 0x7f7be2ae6f6f ".", 0x7f7be2ae6f86 ".\001\003\b:\v;\005\071\v'\031I\023\021\001\022\a@\030|\031\001\023", 0x7f7be2ae6fa2 ".", 0x7f7be2ae6fbf ".\001?\031\003\016:\v;\005\071\v'\031I\023\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f7be2ae6fe0 ".\001\003\016:\v;\005\071\v'\031I\023\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f7be2ae6fff ".", 0x7f7be2ae7019 ".", 0x7f7be2ae7035 "4", 0x7f7be2ae7041 ".", 0x7f7be2ae705c ".\001\003\016:\v;\005\071\v'\031 \v\001\023", 0x7f7be2ae7070 ".\001?\031\003\016:\v;\v9\v'\031\207\001\031\021\001\022\a@\030|\031\001\023", 0x7f7be2ae708f ".", 0x7f7be2ae70aa ".\001?\031\003\016:\v;\v9\v'\031I\023<\031", 0x7f7be2ae70c0 ".\001\003\016:\v;\v9\v'\031\207\001\031\021\001\022\a@\030z\031\001\023", 0x7f7be2ae70dd ".\001\003\016:\v;\005\071\v'\031I\023 \v4\031\001\023", 0x7f7be2ae70f5 ".\001\003\016:\v;\v9\v'\031I\023\021\001\022\a@\030z\031", 0x7f7be45befc0 "\360\357[\344{\177", 0x55aaa9a6bb68 "\\p\256\342{\177", 0x55aaa9a6c2e8 "\300\357\177\343{\177", 0x55aaa9a6c2f0 "", 0x55aaa9a6c2f8 "\001", 0x55aaa9a6c300 "\003", 0x7f7be45befa0 "", 0x7f7be45befa8 "", 0x7f7be45befb0 "", 0x7f7be45befb8 "", 0x7f7be45befc8 "'\023\026\251\252U", 0x0, 0x7f7be45befd0 "\220\215\257\251\252U", 0x55aaa9161327 <fiber_initialize_coroutine> "\363\017\036\372UH\211\345SH\203\354hH\211}\310H\211u\300dH\213\004%(", 0x0, 0x0, 0x0, 0x55aaa91612d9 <fiber_entry> "\363\017\036\372UH\211\345H\203\354 H\211}\350H\211u\340H\213E\340H\213@\bH\211E\360H\213E\360H\213\200\200", 0x4000000000000000 <error: Cannot access memory at address 0x4000000000000000>, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff1b <error: Cannot access memory at address 0x1ff1b>, 0x55aaa9a6bca0 "P\303\246\251\252U", 0x55aaa9a6bf40 "\220\277\246\251\252U", 0x7f7bfe4f0cb5 <backtrace_helper+85> "\213S\030\205\322~\021H\213\vHc\362H\213<\361H9|\361\370t\033H\211C\020\203\302\001\211S\030;S\034t\022[1\300A\\]\303\017\037D", 0x55aaa9a6bca0 "P\303\246\251\252U", 0x55aaa9a6bd90 "", 0x55aaa9a6bf40 "\220\277\246\251\252U", 0x7f7bfe5fc994 <_Unwind_Backtrace+212> "\205\300\017\204d\377\377\377A\277\003", 0x55aaa9a6c350 "\001", 0x55aaa9a6c348 "\320\337[\344{\177", 0x55aaa9a6c358 "\001"...}}
        i = 0
        j = 296
        shstr = 0x7f7be375ed3d ""
        ehdr = 0x7f7be1b4a000
        shdr = 0x7f7be375ef30
        shstr_shdr = 0x7f7be375fab0
        gnu_debuglink_shdr = 0x0
        note_gnu_build_id = 0x7f7be375eff0
        fd = 5
        filesize = 29448944
        file = 0x7f7be1b4a000 "\177ELF\002\001\001"
        symtab_shdr = 0x7f7be375fa30
        strtab_shdr = 0x7f7be375fa70
        dynsym_shdr = 0x7f7be375f0b0
        dynstr_shdr = 0x7f7be375f0f0
        obj = 0x55aaaa1dd5b0
        dladdr_fbase = 94191465455616
#4  0x000055aaa90c06fb in rb_dump_backtrace_with_lines (num_traces=15, traces=0x55aaa946e560 <trace>, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/addr2line.c:2625
        addr = 140170089066160
        i = 0
        lines = 0x55aaaa1dd150
        obj = 0x55aaaa1dd5b0
        dladdr_fbases = 0x55aaaa1dd520
        main_path = 0x55aaa9a6bea0 "/tmp/ruby/build/trunk-O0/ruby"
        len = 29
#5  0x000055aaa8fbcf2c in rb_print_backtrace (errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/vm_dump.c:822
        trace = {0x55aaa8fbcf11 <rb_print_backtrace+36>, 0x55aaa8fbd634 <rb_vm_bugreport+656>, 0x55aaa918c889 <rb_bug_for_fatal_signal+327>, 0x55aaa8eff200 <sigill>, 0x7f7bfe3ff520 <__restore_rt>, 0x55aaa91703a7 <rb_enc_get_index+442>, 0x55aaa8f146ed <rb_str_opt_plus+117>, 0x55aaa8f93029 <vm_opt_plus+459>, 0x55aaa8f9a8d7 <vm_exec_core+20946>, 0x55aaa8fb0e15 <rb_vm_exec+320>, 0x55aaa8fad732 <invoke_block+216>, 0x55aaa8fae1ce <vm_invoke_proc+911>, 0x55aaa8fae972 <rb_vm_invoke_proc+170>, 0x55aaa9163ce1 <rb_fiber_start+726>, 0x55aaa9161327 <fiber_initialize_coroutine>, 0x0 <repeats 1009 times>}
        n = 15
#6  0x000055aaa8fbd634 in rb_vm_bugreport (ctx=0x55aaa9a6c2c0, errout=0x7f7bfe5d76a0 <_IO_2_1_stderr_>) at /tmp/ruby/src/trunk-O0/vm_dump.c:1151
        cmd = 0x0
        other_runtime_info = other_runtime_info
        vm = 0x55aaa99da2a0
        ec = 0x55aaa9af8bc0
#7  0x000055aaa918c889 in rb_bug_for_fatal_signal (default_sighandler=0x0, sig=11, ctx=0x55aaa9a6c2c0, fmt=0x55aaa926d04b "Segmentation fault at %p") at /tmp/ruby/src/trunk-O0/error.c:1108
        pid = -1
        out = 0x7f7bfe5d76a0 <_IO_2_1_stderr_>
        file = 0x7f7be3c318f8 "-"
        line = 10
#8  0x000055aaa8eff200 in sigsegv (sig=11, info=0x55aaa9a6c3f0, ctx=0x55aaa9a6c2c0) at /tmp/ruby/src/trunk-O0/signal.c:929
No locals.
#9  <signal handler called>
No locals.
#10 rb_enc_get_index (obj=140170074517480) at /tmp/ruby/src/trunk-O0/encoding.c:953
        i = 1
        tmp = 94191479228760
#11 0x000055aaa8f146ed in rb_str_opt_plus (str1=140170074517480, str2=140170074517440) at /tmp/ruby/src/trunk-O0/string.c:2388
        len1 = 4
        len2 = 1
        ptr1 = 0x7f7be37ff000 "@foo"
        ptr2 = 0x7f7be37fefd8 "9"
        enc1 = -463741080
        enc2 = 0
#12 0x000055aaa8f93029 in vm_opt_plus (recv=140170074517480, obj=140170074517440) at /tmp/ruby/src/trunk-O0/vm_insnhelper.c:6168
No locals.
#13 0x000055aaa8f9a8d7 in vm_exec_core (ec=0x55aaa9af8bc0) at ../../src/trunk-O0/insns.def:1177
        leaf = true
        recv = 140170074517480
        obj = 140170074517440
        val = 36
        cd = 0x55aaa9b7bc60
        reg_pc = 0x55aaa9a90968
        reg_cfp = 0x7f7be45deeb0
        insns_address_table = {0x55aaa8f95771 <vm_exec_core+108>, 0x55aaa8f957d3 <vm_exec_core+206>, 0x55aaa8f958e6 <vm_exec_core+481>, 0x55aaa8f959fa <vm_exec_core+757>, 0x55aaa8f95b98 <vm_exec_core+1171>, 0x55aaa8f95cc8 <vm_exec_core+1475>, 0x55aaa8f95eda <vm_exec_core+2005>, 0x55aaa8f95fec <vm_exec_core+2279>, 0x55aaa8f960c5 <vm_exec_core+2496>, 0x55aaa8f961cc <vm_exec_core+2759>, 0x55aaa8f962d3 <vm_exec_core+3022>, 0x55aaa8f963e1 <vm_exec_core+3292>, 0x55aaa8f964f3 <vm_exec_core+3566>, 0x55aaa8f965c3 <vm_exec_core+3774>, 0x55aaa8f966cc <vm_exec_core+4039>, 0x55aaa8f967c6 <vm_exec_core+4289>, 0x55aaa8f96889 <vm_exec_core+4484>, 0x55aaa8f9694c <vm_exec_core+4679>, 0x55aaa8f969d5 <vm_exec_core+4816>, 0x55aaa8f96a61 <vm_exec_core+4956>, 0x55aaa8f96b07 <vm_exec_core+5122>, 0x55aaa8f96bdf <vm_exec_core+5338>, 0x55aaa8f96cb1 <vm_exec_core+5548>, 0x55aaa8f96d83 <vm_exec_core+5758>, 0x55aaa8f96e61 <vm_exec_core+5980>, 0x55aaa8f96f23 <vm_exec_core+6174>, 0x55aaa8f97062 <vm_exec_core+6493>, 0x55aaa8f97108 <vm_exec_core+6659>, 0x55aaa8f971ed <vm_exec_core+6888>, 0x55aaa8f9731c <vm_exec_core+7191>, 0x55aaa8f973ed <vm_exec_core+7400>, 0x55aaa8f974b0 <vm_exec_core+7595>, 0x55aaa8f97573 <vm_exec_core+7790>, 0x55aaa8f9766a <vm_exec_core+8037>, 0x55aaa8f9772c <vm_exec_core+8231>, 0x55aaa8f977ee <vm_exec_core+8425>, 0x55aaa8f978e8 <vm_exec_core+8675>, 0x55aaa8f979c7 <vm_exec_core+8898>, 0x55aaa8f97ab4 <vm_exec_core+9135>, 0x55aaa8f97bc4 <vm_exec_core+9407>, 0x55aaa8f97cbe <vm_exec_core+9657>, 0x55aaa8f97d39 <vm_exec_core+9780>, 0x55aaa8f97dfa <vm_exec_core+9973>, 0x55aaa8f97ee8 <vm_exec_core+10211>, 0x55aaa8f97f98 <vm_exec_core+10387>, 0x55aaa8f98117 <vm_exec_core+10770>, 0x55aaa8f981f1 <vm_exec_core+10988>, 0x55aaa8f982dd <vm_exec_core+11224>, 0x55aaa8f9836e <vm_exec_core+11369>, 0x55aaa8f984c9 <vm_exec_core+11716>, 0x55aaa8f98a83 <vm_exec_core+13182>, 0x55aaa8f98b7f <vm_exec_core+13434>, 0x55aaa8f98c82 <vm_exec_core+13693>, 0x55aaa8f98d6e <vm_exec_core+13929>, 0x55aaa8f98f87 <vm_exec_core+14466>, 0x55aaa8f99079 <vm_exec_core+14708>, 0x55aaa8f9917f <vm_exec_core+14970>, 0x55aaa8f9938a <vm_exec_core+15493>, 0x55aaa8f99541 <vm_exec_core+15932>, 0x55aaa8f99675 <vm_exec_core+16240>, 0x55aaa8f997ea <vm_exec_core+16613>, 0x55aaa8f9991e <vm_exec_core+16921>, 0x55aaa8f99a93 <vm_exec_core+17294>, 0x55aaa8f99cf0 <vm_exec_core+17899>, 0x55aaa8f99efb <vm_exec_core+18422>, 0x55aaa8f9a0b2 <vm_exec_core+18861>, 0x55aaa8f9a1d4 <vm_exec_core+19151>, 0x55aaa8f9a27b <vm_exec_core+19318>, 0x55aaa8f9a33f <vm_exec_core+19514>, 0x55aaa8f9a428 <vm_exec_core+19747>, 0x55aaa8f9a514 <vm_exec_core+19983>, 0x55aaa8f9a5fd <vm_exec_core+20216>, 0x55aaa8f9a711 <vm_exec_core+20492>, 0x55aaa8f9a838 <vm_exec_core+20787>, 0x55aaa8f9a977 <vm_exec_core+21106>, 0x55aaa8f9aab6 <vm_exec_core+21425>, 0x55aaa8f9abf5 <vm_exec_core+21744>, 0x55aaa8f9ad34 <vm_exec_core+22063>, 0x55aaa8f9ae73 <vm_exec_core+22382>, 0x55aaa8f9afbd <vm_exec_core+22712>, 0x55aaa8f9b140 <vm_exec_core+23099>, 0x55aaa8f9b27f <vm_exec_core+23418>, 0x55aaa8f9b3be <vm_exec_core+23737>, 0x55aaa8f9b4fd <vm_exec_core+24056>, 0x55aaa8f9b63c <vm_exec_core+24375>, 0x55aaa8f9b77b <vm_exec_core+24694>, 0x55aaa8f9b8ba <vm_exec_core+25013>, 0x55aaa8f9b9f9 <vm_exec_core+25332>, 0x55aaa8f9bb38 <vm_exec_core+25651>, 0x55aaa8f9bc90 <vm_exec_core+25995>, 0x55aaa8f9be56 <vm_exec_core+26449>, 0x55aaa8f9bfdd <vm_exec_core+26840>, 0x55aaa8f9c105 <vm_exec_core+27136>, 0x55aaa8f9c22d <vm_exec_core+27432>, 0x55aaa8f9c350 <vm_exec_core+27723>, 0x55aaa8f9c473 <vm_exec_core+28014>, 0x55aaa8f9c5a7 <vm_exec_core+28322>, 0x55aaa8f9c6e6 <vm_exec_core+28641>, 0x55aaa8f9c7d1 <vm_exec_core+28876>, 0x55aaa8f9c8d6 <vm_exec_core+29137>, 0x55aaa8f9ca0f <vm_exec_core+29450>, 0x55aaa8f9cafe <vm_exec_core+29689>, 0x55aaa8f9cbed <vm_exec_core+29928>, 0x55aaa8f9ccc2 <vm_exec_core+30141>, 0x55aaa8f9cd97 <vm_exec_core+30354>, 0x55aaa8f9ce13 <vm_exec_core+30478>, 0x55aaa8f9ce8f <vm_exec_core+30602>, 0x55aaa8f9cead <vm_exec_core+30632>, 0x55aaa8f9cecb <vm_exec_core+30662>, 0x55aaa8f9cee9 <vm_exec_core+30692>, 0x55aaa8f9cf07 <vm_exec_core+30722>, 0x55aaa8f9cf25 <vm_exec_core+30752>, 0x55aaa8f9cf43 <vm_exec_core+30782>, 0x55aaa8f9cf61 <vm_exec_core+30812>, 0x55aaa8f9cf7f <vm_exec_core+30842>, 0x55aaa8f9cf9d <vm_exec_core+30872>, 0x55aaa8f9cfbb <vm_exec_core+30902>, 0x55aaa8f9cfd9 <vm_exec_core+30932>, 0x55aaa8f9cff7 <vm_exec_core+30962>, 0x55aaa8f9d015 <vm_exec_core+30992>, 0x55aaa8f9d033 <vm_exec_core+31022>, 0x55aaa8f9d051 <vm_exec_core+31052>, 0x55aaa8f9d06f <vm_exec_core+31082>, 0x55aaa8f9d08d <vm_exec_core+31112>, 0x55aaa8f9d0ab <vm_exec_core+31142>, 0x55aaa8f9d0c9 <vm_exec_core+31172>, 0x55aaa8f9d0e7 <vm_exec_core+31202>, 0x55aaa8f9d105 <vm_exec_core+31232>, 0x55aaa8f9d123 <vm_exec_core+31262>, 0x55aaa8f9d141 <vm_exec_core+31292>, 0x55aaa8f9d15f <vm_exec_core+31322>, 0x55aaa8f9d17d <vm_exec_core+31352>, 0x55aaa8f9d19b <vm_exec_core+31382>, 0x55aaa8f9d1b9 <vm_exec_core+31412>, 0x55aaa8f9d1d7 <vm_exec_core+31442>, 0x55aaa8f9d1f5 <vm_exec_core+31472>, 0x55aaa8f9d213 <vm_exec_core+31502>, 0x55aaa8f9d231 <vm_exec_core+31532>, 0x55aaa8f9d24f <vm_exec_core+31562>, 0x55aaa8f9d26d <vm_exec_core+31592>, 0x55aaa8f9d28b <vm_exec_core+31622>, 0x55aaa8f9d2a9 <vm_exec_core+31652>, 0x55aaa8f9d2c7 <vm_exec_core+31682>, 0x55aaa8f9d2e5 <vm_exec_core+31712>, 0x55aaa8f9d303 <vm_exec_core+31742>, 0x55aaa8f9d321 <vm_exec_core+31772>, 0x55aaa8f9d33f <vm_exec_core+31802>, 0x55aaa8f9d35d <vm_exec_core+31832>, 0x55aaa8f9d37b <vm_exec_core+31862>, 0x55aaa8f9d399 <vm_exec_core+31892>, 0x55aaa8f9d3b7 <vm_exec_core+31922>, 0x55aaa8f9d3d5 <vm_exec_core+31952>, 0x55aaa8f9d3f3 <vm_exec_core+31982>, 0x55aaa8f9d411 <vm_exec_core+32012>, 0x55aaa8f9d42f <vm_exec_core+32042>, 0x55aaa8f9d44d <vm_exec_core+32072>, 0x55aaa8f9d46b <vm_exec_core+32102>, 0x55aaa8f9d489 <vm_exec_core+32132>, 0x55aaa8f9d4a7 <vm_exec_core+32162>, 0x55aaa8f9d4c5 <vm_exec_core+32192>, 0x55aaa8f9d4e3 <vm_exec_core+32222>, 0x55aaa8f9d501 <vm_exec_core+32252>, 0x55aaa8f9d51f <vm_exec_core+32282>, 0x55aaa8f9d53d <vm_exec_core+32312>, 0x55aaa8f9d55b <vm_exec_core+32342>, 0x55aaa8f9d579 <vm_exec_core+32372>, 0x55aaa8f9d597 <vm_exec_core+32402>, 0x55aaa8f9d5b5 <vm_exec_core+32432>, 0x55aaa8f9d5d3 <vm_exec_core+32462>, 0x55aaa8f9d5f1 <vm_exec_core+32492>, 0x55aaa8f9d60f <vm_exec_core+32522>, 0x55aaa8f9d62d <vm_exec_core+32552>, 0x55aaa8f9d64b <vm_exec_core+32582>, 0x55aaa8f9d669 <vm_exec_core+32612>, 0x55aaa8f9d687 <vm_exec_core+32642>, 0x55aaa8f9d6a5 <vm_exec_core+32672>, 0x55aaa8f9d6c3 <vm_exec_core+32702>, 0x55aaa8f9d6e1 <vm_exec_core+32732>, 0x55aaa8f9d6ff <vm_exec_core+32762>, 0x55aaa8f9d71d <vm_exec_core+32792>, 0x55aaa8f9d73b <vm_exec_core+32822>, 0x55aaa8f9d759 <vm_exec_core+32852>, 0x55aaa8f9d777 <vm_exec_core+32882>, 0x55aaa8f9d795 <vm_exec_core+32912>, 0x55aaa8f9d7b3 <vm_exec_core+32942>, 0x55aaa8f9d7d1 <vm_exec_core+32972>, 0x55aaa8f9d802 <vm_exec_core+33021>, 0x55aaa8f9d820 <vm_exec_core+33051>, 0x55aaa8f9d83e <vm_exec_core+33081>, 0x55aaa8f9d85c <vm_exec_core+33111>, 0x55aaa8f9d87a <vm_exec_core+33141>, 0x55aaa8f9d898 <vm_exec_core+33171>, 0x55aaa8f9d8b6 <vm_exec_core+33201>, 0x55aaa8f9d8d4 <vm_exec_core+33231>, 0x55aaa8f9d8f2 <vm_exec_core+33261>, 0x55aaa8f9d910 <vm_exec_core+33291>, 0x55aaa8f9d92e <vm_exec_core+33321>, 0x55aaa8f9d94c <vm_exec_core+33351>, 0x55aaa8f9d96a <vm_exec_core+33381>, 0x55aaa8f9d988 <vm_exec_core+33411>...}
#14 0x000055aaa8fb0e15 in rb_vm_exec (ec=0x55aaa9af8bc0) at /tmp/ruby/src/trunk-O0/vm.c:2560
        _ec = 0x55aaa9af8bc0
        _tag = {tag = 36, retval = 4, buf = {0x7f7be45becc0, 0x55aaa8fb0d93 <rb_vm_exec+190>, 0x0, 0x7f7be45bec10, 0x0}, prev = 0x7f7be45bef40, state = RUBY_TAG_NONE, lock_rec = 0}
        state = RUBY_TAG_NONE
        result = 36
#15 0x000055aaa8fad732 in invoke_block (ec=0x55aaa9af8bc0, iseq=0x7f7be3bf34c8, self=140170097708560, captured=0x55aaa9de7480, cref=0x0, type=572653569, opt_pc=0) at /tmp/ruby/src/trunk-O0/vm.c:1517
        arg_size = 0
#16 0x000055aaa8fae1ce in invoke_iseq_block_from_c (me=0x0, is_lambda=0, cref=0x0, passed_block_handler=0, kw_splat=0, argv=0x7f7be45bef08, argc=0, self=140170097708560, captured=0x55aaa9de7480, ec=0x55aaa9af8bc0) at /tmp/ruby/src/trunk-O0/vm.c:1587
        iseq = 0x7f7be3bf34c8
        opt_pc = 0
        type = 572653569
        cfp = 0x7f7be45defc8
        sp = 0x7f7be45bf018
        flags = 0
        use_argv = 0x7f7be45bef08
        av = {94191479041504, 0}
        stack_argv = 0x7f7be45bf018
#17 invoke_block_from_c_proc (me=0x0, is_lambda=0, passed_block_handler=0, kw_splat=0, argv=0x7f7be45bef08, argc=0, self=140170097708560, proc=0x55aaa9de7480, ec=0x55aaa9af8bc0) at /tmp/ruby/src/trunk-O0/vm.c:1685
        block = 0x55aaa9de7480
#18 vm_invoke_proc (ec=0x55aaa9af8bc0, proc=0x55aaa9de7480, self=140170097708560, argc=0, argv=0x7f7be45bef08, kw_splat=0, passed_block_handler=0) at /tmp/ruby/src/trunk-O0/vm.c:1715
No locals.
#19 0x000055aaa8fae972 in rb_vm_invoke_proc (ec=0x55aaa9af8bc0, proc=0x55aaa9de7480, argc=0, argv=0x7f7be45bef08, kw_splat=0, passed_block_handler=0) at /tmp/ruby/src/trunk-O0/vm.c:1736
        self = 140170097708560
#20 0x000055aaa9163ce1 in rb_fiber_start (fiber=0x55aaa9af8b70) at /tmp/ruby/src/trunk-O0/cont.c:2540
        cont = 0x55aaa9af8b70
        argc = 0
        argv = 0x7f7be45bef08
        args = 4
        _ec = 0x55aaa9af8bc0
        _tag = {tag = 36, retval = 0, buf = {0x7f7be45befc0, 0x55aaa9163afa <rb_fiber_start+239>, 0x0, 0x7f7be45beee0, 0x7f7be45befa0}, prev = 0x0, state = RUBY_TAG_NONE, lock_rec = 0}
        th = 0x55aaa99dc830
        proc = 0x55aaa9de7480
        state = RUBY_TAG_NONE
        need_interrupt = 0
        err = 0
#21 0x000055aaa9161327 in fiber_entry (from=0x55aaa99e25e0, to=0x55aaa9af8d90) at /tmp/ruby/src/trunk-O0/cont.c:850
        fiber = 0x55aaa9af8b70
        thread = 0x55aaa99dc830
#22 0x0000000000000000 in ?? ()
No symbol table info available.

>>> Dump Ruby level backtrace (if possible)
raw logfile