# Logfile created on 2024-11-15 13:09:57 +0000 by logger.rb/v1.5.3 #<BuildRuby:0x00007fbb4de4fdd0 @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-repeat50", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-repeat50", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-repeat50", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-repeat50", @configure_opts=["--enable-shared"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS=--repeat-count=50", @spec_opts="-j", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=208000, @logfile="/home/ko1/ruby/logs/brlog.trunk-repeat50.20241115-130957", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x00007fbb4de71cf0 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x00007fbb4de71980 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x00007fbb4dd8a6e8 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-repeat50.20241115-130957", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-repeat50.20241115-130957>, @binmode=false, @mon_data=#<Monitor:0x00007fbb4de71700>, @mon_data_owner_object_id=860>>> $$$[beg] make update-download -j4 tool/config.guess already exists tool/config.sub already exists Update debug to 9c4279598e9e0376657b3813bf76a206f1f97beb Update typeprof to 167263ca3a634b61df0445f1a6b3e259a5d47f94 echo 9c4279598e9e0376657b3813bf76a206f1f97beb | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - echo 167263ca3a634b61df0445f1a6b3e259a5d47f94 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision - /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision unchanged Building typeprof@167263ca3a634b61df0445f1a6b3e259a5d47f94 to /tmp/ruby/src/trunk-repeat50/gems/typeprof-0.21.11.gem Successfully built RubyGem Name: typeprof Version: 0.30.0 File: typeprof-0.30.0.gem $$$[end] "make update-download -j4" exit with 0. $$$[beg] make update-src -j4 From https://github.com/ruby/ruby 8a4ce4e9..ed4871af master -> origin/master Updating 8a4ce4e9..ed4871af Fast-forward .github/workflows/codeql-analysis.yml | 8 +- .github/workflows/scorecards.yml | 2 +- bootstraptest/test_yjit.rb | 14 + ext/socket/ipsocket.c | 37 ++- ext/socket/raddrinfo.c | 2 +- ext/socket/tcpsocket.c | 9 +- gc.c | 34 ++- gc.rb | 10 +- gc/default.c | 6 + internal/gc.h | 4 + lib/bundled_gems.rb | 13 +- lib/net/http.rb | 2 - lib/net/http/backward.rb | 40 --- lib/reline.rb | 1 - lib/reline/io/ansi.rb | 49 +--- lib/reline/terminfo.rb | 158 ---------- lib/syntax_suggest/api.rb | 1 + lib/syntax_suggest/core_ext.rb | 18 -- lib/syntax_suggest/mini_stringio.rb | 24 ++ spec/bundler/bundled_gems_spec.rb | 291 +++++++++++++++++++ spec/ruby/command_line/dash_v_spec.rb | 1 + spec/ruby/command_line/rubyopt_spec.rb | 4 +- spec/syntax_suggest/unit/mini_stringio_spec.rb | 25 ++ test/net/http/test_http.rb | 6 +- ...{test_ansi_without_terminfo.rb => test_ansi.rb} | 9 +- test/reline/test_ansi_with_terminfo.rb | 112 ------- test/reline/test_terminfo.rb | 61 ---- test/ruby/test_gc.rb | 13 + test/ruby/test_rubyoptions.rb | 12 +- test/rubygems/test_project_sanity.rb | 11 +- test/socket/test_tcp.rb | 321 +++++++++++---------- tool/bundler/test_gems.rb | 3 + tool/fake.rb | 2 + tool/test_for_warn_bundled_gems/.gitignore | 1 - tool/test_for_warn_bundled_gems/Gemfile | 0 tool/test_for_warn_bundled_gems/Gemfile.lock | 11 - tool/test_for_warn_bundled_gems/README.md | 3 - tool/test_for_warn_bundled_gems/test.sh | 65 ----- .../test_no_warn_dash_gem.rb | 11 - .../test_no_warn_dependency.rb | 13 - .../test_no_warn_sub_feature.rb | 11 - .../test_warn_bootsnap.rb | 14 - .../test_warn_bootsnap_and_gem.rb | 14 - .../test_warn_bootsnap_rubyarchdir_gem.rb | 14 - .../test_warn_bundle_exec.rb | 1 - .../test_warn_bundle_exec_shebang.rb | 3 - .../test_warn_bundled_gems.rb | 13 - .../test_warn_dash_gem.rb | 10 - .../test_warn_dependency.rb | 11 - .../test_warn_redefined.rb | 21 -- .../test_warn_sub_feature.rb | 10 - .../test_warn_zeitwerk.rb | 15 - version.c | 22 ++ yjit/src/codegen.rs | 61 ++++ yjit/src/stats.rs | 3 + 55 files changed, 749 insertions(+), 881 deletions(-) delete mode 100644 lib/net/http/backward.rb delete mode 100644 lib/reline/terminfo.rb create mode 100644 lib/syntax_suggest/mini_stringio.rb create mode 100644 spec/bundler/bundled_gems_spec.rb create mode 100644 spec/syntax_suggest/unit/mini_stringio_spec.rb rename test/reline/{test_ansi_without_terminfo.rb => test_ansi.rb} (84%) delete mode 100644 test/reline/test_ansi_with_terminfo.rb delete mode 100644 test/reline/test_terminfo.rb delete mode 100644 tool/test_for_warn_bundled_gems/.gitignore delete mode 100644 tool/test_for_warn_bundled_gems/Gemfile delete mode 100644 tool/test_for_warn_bundled_gems/Gemfile.lock delete mode 100644 tool/test_for_warn_bundled_gems/README.md delete mode 100755 tool/test_for_warn_bundled_gems/test.sh delete mode 100644 tool/test_for_warn_bundled_gems/test_no_warn_dash_gem.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_no_warn_dependency.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_no_warn_sub_feature.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_bootsnap.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_bootsnap_and_gem.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_bootsnap_rubyarchdir_gem.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_bundle_exec.rb delete mode 100755 tool/test_for_warn_bundled_gems/test_warn_bundle_exec_shebang.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_bundled_gems.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_dash_gem.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_dependency.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_redefined.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_sub_feature.rb delete mode 100644 tool/test_for_warn_bundled_gems/test_warn_zeitwerk.rb Latest commit hash = ed4871afed $$$[end] "make update-src -j4" exit with 0. $$$[beg] make after-update -j4 making /tmp/ruby/src/trunk-repeat50/gc.rbinc generating /tmp/ruby/src/trunk-repeat50/ext/ripper/eventids2table.c generating miniprelude.c make[1]: Entering directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' make[1]: Nothing to be done for 'src'. make[1]: Leaving directory '/tmp/ruby/src/trunk-repeat50/ext/ripper' /tmp/ruby/src/trunk-repeat50/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-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' Update typeprof to 167263ca3a634b61df0445f1a6b3e259a5d47f94 Update debug to 9c4279598e9e0376657b3813bf76a206f1f97beb echo 167263ca3a634b61df0445f1a6b3e259a5d47f94 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision - echo 9c4279598e9e0376657b3813bf76a206f1f97beb | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision unchanged /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged Building typeprof@167263ca3a634b61df0445f1a6b3e259a5d47f94 to /tmp/ruby/src/trunk-repeat50/gems/typeprof-0.21.11.gem Successfully built RubyGem Name: typeprof Version: 0.30.0 File: typeprof-0.30.0.gem Extracting bundle gem typeprof-0.21.11... Try with hash version of bundled gems instead of gems/typeprof-0.21.11.gem. We don't use this gem with release version of Ruby. Unpacked gems/typeprof-0.30.0.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 = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -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-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. compiling /tmp/ruby/src/trunk-repeat50/miniinit.c compiling /tmp/ruby/src/trunk-repeat50/array.c compiling /tmp/ruby/src/trunk-repeat50/ast.c compiling /tmp/ruby/src/trunk-repeat50/bignum.c compiling /tmp/ruby/src/trunk-repeat50/class.c compiling /tmp/ruby/src/trunk-repeat50/compile.c compiling /tmp/ruby/src/trunk-repeat50/complex.c compiling /tmp/ruby/src/trunk-repeat50/cont.c compiling /tmp/ruby/src/trunk-repeat50/debug.c compiling /tmp/ruby/src/trunk-repeat50/dir.c compiling /tmp/ruby/src/trunk-repeat50/encoding.c compiling /tmp/ruby/src/trunk-repeat50/enum.c compiling /tmp/ruby/src/trunk-repeat50/enumerator.c compiling /tmp/ruby/src/trunk-repeat50/error.c compiling /tmp/ruby/src/trunk-repeat50/eval.c compiling /tmp/ruby/src/trunk-repeat50/file.c compiling /tmp/ruby/src/trunk-repeat50/gc.c compiling /tmp/ruby/src/trunk-repeat50/hash.c compiling /tmp/ruby/src/trunk-repeat50/imemo.c compiling /tmp/ruby/src/trunk-repeat50/io.c compiling /tmp/ruby/src/trunk-repeat50/iseq.c compiling /tmp/ruby/src/trunk-repeat50/load.c compiling /tmp/ruby/src/trunk-repeat50/marshal.c compiling /tmp/ruby/src/trunk-repeat50/math.c compiling /tmp/ruby/src/trunk-repeat50/memory_view.c compiling /tmp/ruby/src/trunk-repeat50/rjit.c compiling /tmp/ruby/src/trunk-repeat50/rjit_c.c compiling /tmp/ruby/src/trunk-repeat50/node.c compiling /tmp/ruby/src/trunk-repeat50/node_dump.c compiling /tmp/ruby/src/trunk-repeat50/numeric.c compiling /tmp/ruby/src/trunk-repeat50/object.c compiling /tmp/ruby/src/trunk-repeat50/pack.c compiling parse.c compiling /tmp/ruby/src/trunk-repeat50/proc.c compiling /tmp/ruby/src/trunk-repeat50/process.c compiling /tmp/ruby/src/trunk-repeat50/ractor.c compiling /tmp/ruby/src/trunk-repeat50/random.c compiling /tmp/ruby/src/trunk-repeat50/range.c compiling /tmp/ruby/src/trunk-repeat50/rational.c compiling /tmp/ruby/src/trunk-repeat50/re.c compiling /tmp/ruby/src/trunk-repeat50/ruby.c compiling /tmp/ruby/src/trunk-repeat50/scheduler.c compiling /tmp/ruby/src/trunk-repeat50/shape.c compiling /tmp/ruby/src/trunk-repeat50/signal.c compiling /tmp/ruby/src/trunk-repeat50/sprintf.c compiling /tmp/ruby/src/trunk-repeat50/string.c compiling /tmp/ruby/src/trunk-repeat50/struct.c compiling /tmp/ruby/src/trunk-repeat50/symbol.c compiling /tmp/ruby/src/trunk-repeat50/thread.c compiling /tmp/ruby/src/trunk-repeat50/time.c compiling /tmp/ruby/src/trunk-repeat50/transcode.c compiling /tmp/ruby/src/trunk-repeat50/variable.c compiling /tmp/ruby/src/trunk-repeat50/version.c compiling /tmp/ruby/src/trunk-repeat50/vm.c compiling /tmp/ruby/src/trunk-repeat50/vm_backtrace.c compiling /tmp/ruby/src/trunk-repeat50/vm_dump.c compiling /tmp/ruby/src/trunk-repeat50/vm_sync.c compiling /tmp/ruby/src/trunk-repeat50/vm_trace.c compiling /tmp/ruby/src/trunk-repeat50/weakmap.c compiling /tmp/ruby/src/trunk-repeat50/yjit.c building Rust YJIT (release mode) touch yjit/target/release/libyjit.a partial linking yjit/target/release/libyjit.a into yjit/target/release/libyjit.o 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 = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -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-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. builtin_binary.inc updated 8714c02098491bcdd62afcaccd209748c6e0dcc3ba36427c91b2ccd8b7f74a5b builtin_binary.inc compiling /tmp/ruby/src/trunk-repeat50/builtin.c linking static-library libruby-static.a linking shared-library libruby.so.3.4.0 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 = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -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-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk building spec/ruby/optional/capi/ext/array_spec.so building spec/ruby/optional/capi/ext/basic_object_spec.so encdb.h unchanged building spec/ruby/optional/capi/ext/bignum_spec.so building spec/ruby/optional/capi/ext/binding_spec.so building spec/ruby/optional/capi/ext/boolean_spec.so building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.so building spec/ruby/optional/capi/ext/class_spec.so building spec/ruby/optional/capi/ext/class_under_autoload_spec.so building spec/ruby/optional/capi/ext/complex_spec.so building spec/ruby/optional/capi/ext/constants_spec.so building spec/ruby/optional/capi/ext/data_spec.so building spec/ruby/optional/capi/ext/debug_spec.so building spec/ruby/optional/capi/ext/encoding_spec.so building spec/ruby/optional/capi/ext/enumerator_spec.so building spec/ruby/optional/capi/ext/exception_spec.so building spec/ruby/optional/capi/ext/fiber_spec.so building spec/ruby/optional/capi/ext/file_spec.so building spec/ruby/optional/capi/ext/fixnum_spec.so building spec/ruby/optional/capi/ext/float_spec.so building spec/ruby/optional/capi/ext/gc_spec.so building spec/ruby/optional/capi/ext/globals_spec.so building spec/ruby/optional/capi/ext/hash_spec.so building spec/ruby/optional/capi/ext/integer_spec.so building spec/ruby/optional/capi/ext/io_spec.so building spec/ruby/optional/capi/ext/kernel_spec.so building spec/ruby/optional/capi/ext/language_spec.so building spec/ruby/optional/capi/ext/marshal_spec.so building spec/ruby/optional/capi/ext/module_spec.so building spec/ruby/optional/capi/ext/module_under_autoload_spec.so building spec/ruby/optional/capi/ext/mutex_spec.so building spec/ruby/optional/capi/ext/numeric_spec.so building spec/ruby/optional/capi/ext/object_spec.so building spec/ruby/optional/capi/ext/proc_spec.so building spec/ruby/optional/capi/ext/range_spec.so building spec/ruby/optional/capi/ext/rational_spec.so building spec/ruby/optional/capi/ext/rbasic_spec.so building spec/ruby/optional/capi/ext/regexp_spec.so building spec/ruby/optional/capi/ext/st_spec.so building spec/ruby/optional/capi/ext/string_spec.so building spec/ruby/optional/capi/ext/struct_spec.so building spec/ruby/optional/capi/ext/symbol_spec.so building spec/ruby/optional/capi/ext/thread_spec.so building spec/ruby/optional/capi/ext/time_spec.so building spec/ruby/optional/capi/ext/tracepoint_spec.so building spec/ruby/optional/capi/ext/typed_data_spec.so building spec/ruby/optional/capi/ext/util_spec.so making enc making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/-test-/rational' compiling /tmp/ruby/src/trunk-repeat50/ext/-test-/rational/rat.c linking shared-object -test-/rational.so make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' compiling /tmp/ruby/src/trunk-repeat50/ext/coverage/coverage.c make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/-test-/rational' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/object_tracing.c make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' compiling /tmp/ruby/src/trunk-repeat50/ext/pty/pty.c make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' compiling /tmp/ruby/src/trunk-repeat50/ext/ripper/ripper.c linking shared-object pty.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' compiling /tmp/ruby/src/trunk-repeat50/ext/socket/init.c compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/objspace.c linking shared-object coverage.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' compiling /tmp/ruby/src/trunk-repeat50/ext/socket/constants.c make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' compiling /tmp/ruby/src/trunk-repeat50/ext/socket/basicsocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/objspace/objspace_dump.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/socket.c linking shared-object objspace.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ipsocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/tcpsocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/tcpserver.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/sockssocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/udpsocket.c /tmp/ruby/src/trunk-repeat50/ext/socket/ipsocket.c: In function ‘reallocate_connection_attempt_fds’: /tmp/ruby/src/trunk-repeat50/ext/socket/ipsocket.c:293:62: warning: pointer ‘fds’ may be used after ‘realloc’ [-Wuse-after-free] 293 | for (int i = current_capacity; i < new_capacity; i++) fds[i] = -1; | ^ /tmp/ruby/src/trunk-repeat50/ext/socket/ipsocket.c:289:9: note: call to ‘realloc’ here 289 | if (realloc(fds, new_capacity * sizeof(int)) == NULL) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ At top level: cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics compiling /tmp/ruby/src/trunk-repeat50/ext/socket/unixsocket.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/unixserver.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/option.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ancdata.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/raddrinfo.c compiling /tmp/ruby/src/trunk-repeat50/ext/socket/ifaddr.c linking shared-object socket.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' linking shared-object ripper.so make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' linking ruby make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' $$$[end] "make all -j4" exit with 0. $$$[beg] make install -j4 Update typeprof to 167263ca3a634b61df0445f1a6b3e259a5d47f94 Update debug to 9c4279598e9e0376657b3813bf76a206f1f97beb BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = -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-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs echo 167263ca3a634b61df0445f1a6b3e259a5d47f94 | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision - echo 9c4279598e9e0376657b3813bf76a206f1f97beb | /bin/sh /tmp/ruby/src/trunk-repeat50/tool/ifchange /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision - generating encdb.h gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/typeprof.revision unchanged /tmp/ruby/src/trunk-repeat50/.bundle/.timestamp/debug.revision unchanged generating enc.mk encdb.h unchanged Building typeprof@167263ca3a634b61df0445f1a6b3e259a5d47f94 to /tmp/ruby/src/trunk-repeat50/gems/typeprof-0.21.11.gem making srcs under enc making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h Successfully built RubyGem Name: typeprof Version: 0.30.0 File: typeprof-0.30.0.gem Extracting bundle gem typeprof-0.21.11... transdb.h unchanged Try with hash version of bundled gems instead of gems/typeprof-0.21.11.gem. We don't use this gem with release version of Ruby. generating makefiles ext/configure-ext.mk making trans Unpacked gems/typeprof-0.30.0.gem ext/configure-ext.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' ./miniruby -I/tmp/ruby/src/trunk-repeat50/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat50/tool/runruby.rb --extout=.ext -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-repeat50/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 binary commands: /tmp/ruby/install/trunk-repeat50/bin installing base libraries: /tmp/ruby/install/trunk-repeat50/lib installing arch files: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.4.0+1/x86_64-linux installing pkgconfig data: /tmp/ruby/install/trunk-repeat50/lib/pkgconfig installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.4.0+1/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/site_ruby/3.4.0+1/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-repeat50/lib/ruby/vendor_ruby/3.4.0+1/x86_64-linux installing extension headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.4.0+1/x86_64-linux installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.4.0+1 installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/site_ruby/3.4.0+1 installing extension scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/vendor_ruby/3.4.0+1 installing extension headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.4.0+1/ruby installing command scripts: /tmp/ruby/install/trunk-repeat50/bin installing library scripts: /tmp/ruby/install/trunk-repeat50/lib/ruby/3.4.0+1 installing common headers: /tmp/ruby/install/trunk-repeat50/include/ruby-3.4.0+1 installing manpages: /tmp/ruby/install/trunk-repeat50/share/man/man1 installing default gems from lib: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.4.0+1 benchmark 0.4.0 bundler 2.6.0.dev cgi 0.4.1 delegate 0.4.0 did_you_mean 1.6.3 english 0.8.0 erb 4.0.4 error_highlight 0.6.0 fileutils 1.7.3 find 0.2.0 forwardable 1.3.3 ipaddr 1.2.7 irb 1.14.1 logger 1.6.1 net-http 0.5.0 net-protocol 0.2.2 open-uri 0.5.0 open3 0.2.1 optparse 0.6.0 ostruct 0.6.1 pp 0.6.1 prettyprint 0.2.0 prism 1.0.0 pstore 0.1.4 rdoc 6.7.0 readline 0.0.4 reline 0.5.11 resolv 0.5.0 ruby2_keywords 0.0.5 securerandom 0.3.2 set 1.1.0 shellwords 0.2.1 singleton 0.3.0 syntax_suggest 2.0.1 tempfile 0.3.0 time 0.4.1 timeout 0.4.2 tmpdir 0.3.0 tsort 0.2.0 un 0.3.0 uri 1.0.2 weakref 0.1.3 yaml 0.4.0 installing default gems from ext: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.4.0+1 date 3.4.0 digest 3.1.1 etc 1.4.4 fcntl 1.2.0 fiddle 1.1.6.dev io-console 0.8.0.beta1 io-nonblock 0.3.0 io-wait 0.3.1 json 2.8.1 openssl 3.2.0 pathname 0.4.0 psych 5.2.0 stringio 3.1.2.dev strscan 3.1.1.dev zlib 3.2.0 installing bundled gems: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.4.0+1 minitest 5.25.1 power_assert 2.0.4 rake 13.2.1 test-unit 3.6.2 rexml 3.3.9 rss 0.3.1 net-ftp 0.3.8 net-imap 0.5.1 net-pop 0.1.2 net-smtp 0.5.0 matrix 0.4.2 prime 0.1.2 rbs 3.6.1 debug 1.9.2 racc 1.8.1 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 repl_type_completor 0.1.7 installing bundled gem cache: /tmp/ruby/install/trunk-repeat50/lib/ruby/gems/3.4.0+1/cache skipped bundled gems: typeprof-0.30.0.gem not found in bundled_gems $$$[end] "make install -j4" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j4' PASS all 1993 tests $$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0. $$$[beg] make yes-test-basic TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Checking leaked global symbols...none /tmp/ruby/src/trunk-repeat50/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:condition ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:if/unless ...OK 3 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:case .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:while/until ........OK 8 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:exception ..........OK 10 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:array .......................................OK 39 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:hash ...........................OK 27 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:iterator ...........................................................................................................OK 107 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:float ................................................................................OK 80 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:bignum ...............................OK 31 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:string & char ..............................................................OK 62 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:assignment ..........OK 10 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:call ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:proc .........OK 9 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:signal ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:eval ...........................OK 27 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:system ........OK 8 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:const .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:clone .....OK 5 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:marshal ....OK 4 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:pack ....OK 4 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:math ..OK 2 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:struct ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:variable ............OK 12 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:trace ...OK 3 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:defined? ............OK 12 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:alias ......OK 6 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:path .......................OK 23 /tmp/ruby/src/trunk-repeat50/basictest/test.rb:gc ....OK 4 test succeeded $$$[end] "make yes-test-basic TESTS=--repeat-count=50" exit with 0. $$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' Run options: --seed=41966 "--ruby=./miniruby -I/tmp/ruby/src/trunk-repeat50/lib -I. -I.ext/common /tmp/ruby/src/trunk-repeat50/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/tmp/ruby/src/trunk-repeat50/test/.excludes --name=!/memory_leak/ --stderr-on-failure --repeat-count=50 # Running tests: Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 8 #<File::Stat dev=0x8, ino=1943170109, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 10 : #<TCPSocket:fd 10, AF_INET, 127.0.0.1, 33643> Closed file descriptor: TestRubyYield#test_yield_0: 10 Finished(1/50) tests in 1428.637596s, 22.4634 tests/s, 4576.9403 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 9 #<File::Stat dev=0x8, ino=1943752364, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 10 #<File::Stat dev=0x8, ino=1943766748, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(2/50) tests in 1337.876426s, 23.9880 tests/s, 4889.4329 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 11 #<File::Stat dev=0x8, ino=1944277189, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_upper_case_proxy: 14 : #<TCPSocket:fd 14, AF_INET6, ::1, 32799> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 15 : #<TCPSocket:fd 15, AF_INET6, ::1, 45153> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 14 Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 15 Finished(3/50) tests in 1372.634833s, 23.3806 tests/s, 4766.8046 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 12 #<File::Stat dev=0x8, ino=1944785283, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 13 #<File::Stat dev=0x8, ino=1944853166, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 15 : #<TCPSocket:fd 15, AF_INET, 127.0.0.1, 40197> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 15 Finished(4/50) tests in 1537.489031s, 20.8736 tests/s, 4254.9539 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 14 #<File::Stat dev=0x8, ino=1945307000, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 15 #<File::Stat dev=0x8, ino=1945348327, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 16 #<File::Stat dev=0x8, ino=1945466773, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 18 : #<TCPSocket:fd 18, AF_INET, 127.0.0.1, 46829> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 18 Finished(5/50) tests in 1780.298103s, 18.0268 tests/s, 3674.3605 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 17 #<File::Stat dev=0x8, ino=1946144262, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 18 #<File::Stat dev=0x8, ino=1946162726, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(6/50) tests in 1631.752125s, 19.6678 tests/s, 4009.5453 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 19 #<File::Stat dev=0x8, ino=1946863547, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 20 #<File::Stat dev=0x8, ino=1946889456, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed: 21 #<File::Stat dev=0x8, ino=1947100526, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(7/50) tests in 1524.262356s, 21.0548 tests/s, 4290.4583 assertions/s. Finished(8/50) tests in 1443.537190s, 22.2322 tests/s, 4531.5674 assertions/s. Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_failed: 22 #<File::Stat dev=0x8, ino=1948190079, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked thread: TestSocket#test_accept_loop_multi_port: #<Thread:0x00007fd65c01a880 /tmp/ruby/build/trunk-repeat50/.ext/common/socket.rb:730 sleep> Finished thread: TestSocket#test_resolurion_error_error_code: #<Thread:0x00007fd65c01a880 /tmp/ruby/build/trunk-repeat50/.ext/common/socket.rb:730 dead> Finished(9/50) tests in 1765.886133s, 18.1739 tests/s, 3704.9960 assertions/s. Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 25 : #<TCPSocket:fd 25, AF_INET6, ::1, 40323> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 25 Finished(10/50) tests in 1861.844631s, 17.2372 tests/s, 3514.1477 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 23 #<File::Stat dev=0x8, ino=1949537195, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(11/50) tests in 1648.613948s, 19.4667 tests/s, 3968.3681 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 24 #<File::Stat dev=0x8, ino=1950136982, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 25 #<File::Stat dev=0x8, ino=1950224676, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(12/50) tests in 1539.526448s, 20.8460 tests/s, 4249.7899 assertions/s. Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 27 : #<TCPSocket:fd 27, AF_INET, 127.0.0.1, 35685> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 27 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 28 : #<TCPSocket:fd 28, AF_INET6, ::1, 46377> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 28 Finished(13/50) tests in 1802.528103s, 17.8044 tests/s, 3628.0516 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 26 #<File::Stat dev=0x8, ino=1951360955, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 29 : #<TCPSocket:fd 29, AF_INET6, ::1, 39503> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 29 Finished(14/50) tests in 2032.909216s, 15.7867 tests/s, 3218.8796 assertions/s. Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 27 #<File::Stat dev=0x8, ino=1952649513, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 29 : #<TCPSocket:fd 29, AF_INET, 127.0.0.1, 38269> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 29 Finished(15/50) tests in 1713.465263s, 18.7299 tests/s, 3816.3487 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 28 #<File::Stat dev=0x8, ino=1952957340, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(16/50) tests in 1589.660554s, 20.1886 tests/s, 4115.5616 assertions/s. Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 29 #<File::Stat dev=0x8, ino=1953592748, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 31 : #<TCPSocket:fd 31, AF_INET, 127.0.0.1, 40823> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 31 Finished(17/50) tests in 1759.976510s, 18.2349 tests/s, 3717.3360 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 30 #<File::Stat dev=0x8, ino=1954223155, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 31 #<File::Stat dev=0x8, ino=1954240884, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 32 #<File::Stat dev=0x8, ino=1954234207, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 33 #<File::Stat dev=0x8, ino=1954710985, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 36 : #<TCPSocket:fd 36, AF_INET6, ::1, 38007> Finished(18/50) tests in 2037.565482s, 15.7507 tests/s, 3209.8954 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 34 #<File::Stat dev=0x8, ino=1955181070, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 35 #<File::Stat dev=0x8, ino=1955205183, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 36 #<File::Stat dev=0x8, ino=1955205205, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 38 : #<TCPSocket:fd 38, AF_INET, 127.0.0.1, 38079> Closed file descriptor: TestGemUnsatisfiableDependencyError#test_name: 38 Finished(19/50) tests in 1734.139513s, 18.5066 tests/s, 3772.9467 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 37 #<File::Stat dev=0x8, ino=1955836255, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 38 #<File::Stat dev=0x8, ino=1955864842, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 39 #<File::Stat dev=0x8, ino=1955854297, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 41 : #<TCPSocket:fd 41, AF_INET, 127.0.0.1, 44261> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 41 Finished(20/50) tests in 1699.297512s, 18.8860 tests/s, 3850.6077 assertions/s. Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 40 #<File::Stat dev=0x8, ino=1956690608, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 43 : #<TCPSocket:fd 43, AF_INET6, ::1, 35489> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 43 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_no_proxy: 43 : #<TCPSocket:fd 43, AF_INET6, ::1, 44805> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 43 Finished(21/50) tests in 2041.322349s, 15.7217 tests/s, 3204.8059 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 41 #<File::Stat dev=0x8, ino=1957306315, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 42 #<File::Stat dev=0x8, ino=1957463862, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 45 : #<TCPSocket:fd 45, AF_INET6, ::1, 42641> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 45 Finished(22/50) tests in 1991.965520s, 16.1112 tests/s, 3284.4585 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 43 #<File::Stat dev=0x8, ino=1958211411, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Closed file descriptor: TestSocket#test_unix: 47 Leaked thread: TestSocket#test_accept_loop_multi_port: #<Thread:0x00007fd61f72c1d8 /tmp/ruby/build/trunk-repeat50/.ext/common/socket.rb:730 sleep> Finished thread: TestSocket#test_resolurion_error_error_code: #<Thread:0x00007fd61f72c1d8 /tmp/ruby/build/trunk-repeat50/.ext/common/socket.rb:730 dead> Finished(23/50) tests in 1886.542738s, 17.0115 tests/s, 3467.5944 assertions/s. Finished(24/50) tests in 1656.477450s, 19.3742 tests/s, 3948.9206 assertions/s. Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 45 : #<TCPSocket:fd 45, AF_INET, 127.0.0.1, 37521> Closed file descriptor: TestGemUnsatisfiableDependencyError#test_name: 45 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 46 : #<TCPSocket:fd 46, AF_INET6, ::1, 40285> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 46 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 46 : #<TCPSocket:fd 46, AF_INET6, ::1, 41101> Finished(25/50) tests in 2031.364175s, 15.7987 tests/s, 3220.6234 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 44 #<File::Stat dev=0x8, ino=1960374398, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(26/50) tests in 2044.282357s, 15.6989 tests/s, 3199.7693 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 45 #<File::Stat dev=0x8, ino=1961241905, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 46 #<File::Stat dev=0x8, ino=1961241947, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 47 #<File::Stat dev=0x8, ino=1961345985, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy_no_env: 50 : #<TCPSocket:fd 50, AF_INET6, ::1, 36011> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 50 Finished(27/50) tests in 1646.083006s, 19.4966 tests/s, 3974.2990 assertions/s. Finished(28/50) tests in 1854.102970s, 17.3092 tests/s, 3528.4044 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 48 #<File::Stat dev=0x8, ino=1962483333, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 49 #<File::Stat dev=0x8, ino=1962483422, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 50 #<File::Stat dev=0x8, ino=1962496649, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 51 #<File::Stat dev=0x8, ino=1962497462, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(29/50) tests in 2148.434268s, 14.9379 tests/s, 3045.0478 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_post: 52 #<File::Stat dev=0x8, ino=1963490530, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 53 #<File::Stat dev=0x8, ino=1963506209, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 54 #<File::Stat dev=0x8, ino=1963506291, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 57 : #<TCPSocket:fd 57, AF_INET6, ::1, 41989> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 57 Finished(30/50) tests in 1977.364471s, 16.2302 tests/s, 3308.3188 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 55 #<File::Stat dev=0x8, ino=1964313278, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(31/50) tests in 1836.931339s, 17.4710 tests/s, 3561.8582 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 56 #<File::Stat dev=0x8, ino=1964930597, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 59 : #<TCPSocket:fd 59, AF_INET6, ::1, 43949> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 59 Finished(32/50) tests in 1891.584160s, 16.9662 tests/s, 3458.1707 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 57 #<File::Stat dev=0x8, ino=1965676411, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 58 #<File::Stat dev=0x8, ino=1966193255, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_single_host: 61 Finished(33/50) tests in 2327.833991s, 13.7866 tests/s, 2810.5110 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 59 #<File::Stat dev=0x8, ino=1966758251, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 61 : #<TCPSocket:fd 61, AF_INET, 127.0.0.1, 42251> Closed file descriptor: TestGemUnsatisfiableDependencyError#test_name: 61 Finished(34/50) tests in 1902.044664s, 16.8729 tests/s, 3439.5927 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 60 #<File::Stat dev=0x8, ino=1967467873, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(35/50) tests in 1779.361427s, 18.0362 tests/s, 3677.1377 assertions/s. Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 63 : #<TCPSocket:fd 63, AF_INET6, ::1, 36987> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 63 Finished(36/50) tests in 2160.614811s, 14.8536 tests/s, 3028.1029 assertions/s. Finished(37/50) tests in 2089.581471s, 15.3586 tests/s, 3130.5379 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_s_start: 61 #<File::Stat dev=0x8, ino=1969835668, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 62 #<File::Stat dev=0x8, ino=1969839650, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(38/50) tests in 1974.022240s, 16.2577 tests/s, 3313.9976 assertions/s. Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 64 : #<TCPSocket:fd 64, AF_INET, 127.0.0.1, 38501> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 64 Finished(39/50) tests in 1934.147041s, 16.5928 tests/s, 3381.1385 assertions/s. Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 63 #<File::Stat dev=0x8, ino=1971407521, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 65 : #<TCPSocket:fd 65, AF_INET, 127.0.0.1, 45015> Closed file descriptor: TestGemUnsatisfiableDependencyError#test_name: 65 Finished(40/50) tests in 2272.589719s, 14.1218 tests/s, 2878.5156 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 64 #<File::Stat dev=0x8, ino=1972366044, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(41/50) tests in 2143.198956s, 14.9743 tests/s, 3051.6546 assertions/s. Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 65 #<File::Stat dev=0x8, ino=1973246755, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(42/50) tests in 1927.893875s, 16.6467 tests/s, 3393.8466 assertions/s. Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 66 #<File::Stat dev=0x8, ino=1974176584, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 68 : #<TCPSocket:fd 68, AF_INET, 127.0.0.1, 44251> Closed file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_request: 68 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_fetch_http_with_additional_headers: 69 : #<TCPSocket:fd 69, AF_INET6, ::1, 43723> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_proxy: 69 Finished(43/50) tests in 2325.855681s, 13.7984 tests/s, 2812.7098 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 67 #<File::Stat dev=0x8, ino=1974890813, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 68 #<File::Stat dev=0x8, ino=1974893730, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 70 : #<TCPSocket:fd 70, AF_INET, 127.0.0.1, 38791> Closed file descriptor: TestGemUnsatisfiableDependencyError#test_name: 70 Leaked file descriptor: TestGemRemoteFetcherLocalServer#test_observe_no_proxy_env_list: 71 : #<TCPSocket:fd 71, AF_INET6, ::1, 38161> Closed file descriptor: TestGemRemoteFetcherLocalServer#test_implicit_no_proxy: 71 Finished(44/50) tests in 2233.463480s, 14.3692 tests/s, 2929.7063 assertions/s. Leaked file descriptor: TestOpenURISSL#test_bad_ssl_version: 69 #<File::Stat dev=0x8, ino=1975874148, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(45/50) tests in 1999.439125s, 16.0510 tests/s, 3271.5245 assertions/s. Finished(46/50) tests in 2171.385756s, 14.7800 tests/s, 3012.8391 assertions/s. Finished(47/50) tests in 2352.699447s, 13.6409 tests/s, 2780.5315 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 70 #<File::Stat dev=0x8, ino=1978447051, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(48/50) tests in 2178.525790s, 14.7315 tests/s, 3003.5715 assertions/s. Finished(49/50) tests in 2096.413885s, 15.3085 tests/s, 3119.9583 assertions/s. Leaked file descriptor: TestNetHTTP_v1_2_chunked#test_get__crlf: 71 #<File::Stat dev=0x8, ino=1979960889, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_s_start: 72 #<File::Stat dev=0x8, ino=1979985254, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTP_v1_2#test_get__crlf: 73 #<File::Stat dev=0x8, ino=1979990147, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 74 #<File::Stat dev=0x8, ino=1980450648, mode=0140777, nlink=1, uid=1001, gid=1000, rdev=0x0, size=0, blksize=4096, blocks=0, atime=1970-01-01 00:00:00 +0000, mtime=1970-01-01 00:00:00 +0000, ctime=1970-01-01 00:00:00 +0000> Finished(50/50) tests in 2559.196511s, 12.5403 tests/s, 2555.9311 assertions/s. 1604649 tests, 327091848 assertions, 0 failures, 0 errors, 9945 skips ruby -v: ruby 3.4.0dev (2024-11-15T09:28:16Z master ed4871afed) +PRISM [x86_64-linux] $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS=--repeat-count=50" exit with 0. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS=--repeat-count=50 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-repeat50/include -I/tmp/ruby/src/trunk-repeat50 -I/tmp/ruby/src/trunk-repeat50/prism -I/tmp/ruby/src/trunk-repeat50/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.4 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -lgmp -ldl -lcrypt -lm -lpthread LANG = C.UTF-8 LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-repeat50/yjit/target/release/' /tmp/ruby/src/trunk-repeat50/yjit/src/lib.rs gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0 Copyright (C) 2023 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/bigdecimal-3.1.8/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/debug-1.9.2/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.5.3/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/rbs-3.6.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50/.bundle/gems/syslog-0.1.2/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' make[1]: Entering directory '/tmp/ruby/build/trunk-repeat50' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-repeat50' ruby 3.4.0dev (2024-11-15T09:28:16Z master ed4871afed) +PRISM [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 34.690254 seconds 3436 files, 33248 examples, 142056 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS=--repeat-count=50" exit with 0.