# Logfile created on 2023-11-18 12:25:35 +0000 by logger.rb/v1.4.3 #<BuildRuby:0x000055c4c8c6a3d0 @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-jemalloc", @TARGET_SRC_DIR="/tmp/ruby/src/trunk-jemalloc", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk-jemalloc", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk-jemalloc", @configure_opts=["--with-jemalloc --enable-shared"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS='-j4'", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=10800, @logfile="/home/ko1/ruby/logs/brlog.trunk-jemalloc.20231118-122535", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x000055c4c8cf34a0 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x000055c4c8cf3310 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x000055c4c8cf3180 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/ko1/ruby/logs/brlog.trunk-jemalloc.20231118-122535", @dev=#<File:/home/ko1/ruby/logs/brlog.trunk-jemalloc.20231118-122535>, @binmode=false, @mon_data=#<Monitor:0x000055c4c8cf30b8>, @mon_data_owner_object_id=860>>> $$$[beg] make update-unicode -j4 make: Nothing to be done for 'update-unicode'. $$$[end] "make update-unicode -j4" exit with 0. $$$[beg] make update-download -j4 tool/config.guess already exists tool/config.sub already exists Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-jemalloc/tool/ifchange /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision - /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision unchanged $$$[end] "make update-download -j4" exit with 0. $$$[beg] make update-rubyspec -j4 make: Nothing to be done for 'update-rubyspec'. $$$[end] "make update-rubyspec -j4" exit with 0. $$$[beg] make update-src -j4 From https://github.com/ruby/ruby f479e62..c56dd94 master -> origin/master Updating f479e62..c56dd94 Fast-forward tool/lrama/lib/lrama/context.rb | 4 +- tool/lrama/lib/lrama/counterexamples.rb | 3 + tool/lrama/lib/lrama/counterexamples/path.rb | 46 -- .../lib/lrama/counterexamples/production_path.rb | 17 + tool/lrama/lib/lrama/counterexamples/start_path.rb | 21 + .../lib/lrama/counterexamples/transition_path.rb | 17 + tool/lrama/lib/lrama/grammar.rb | 433 +++--------- tool/lrama/lib/lrama/grammar/code.rb | 102 +-- .../lib/lrama/grammar/code/initial_action_code.rb | 28 + .../lib/lrama/grammar/code/no_reference_code.rb | 24 + tool/lrama/lib/lrama/grammar/code/printer_code.rb | 34 + tool/lrama/lib/lrama/grammar/code/rule_action.rb | 62 ++ tool/lrama/lib/lrama/grammar/counter.rb | 15 + tool/lrama/lib/lrama/grammar/error_token.rb | 6 +- .../lrama/grammar/parameterizing_rules/builder.rb | 43 ++ .../grammar/parameterizing_rules/builder/base.rb | 28 + .../grammar/parameterizing_rules/builder/list.rb | 20 + .../parameterizing_rules/builder/nonempty_list.rb | 20 + .../grammar/parameterizing_rules/builder/option.rb | 20 + .../parameterizing_rules/builder/separated_list.rb | 28 + .../builder/separated_nonempty_list.rb | 27 + tool/lrama/lib/lrama/grammar/printer.rb | 6 +- tool/lrama/lib/lrama/grammar/reference.rb | 23 +- tool/lrama/lib/lrama/grammar/rule.rb | 20 +- tool/lrama/lib/lrama/grammar/rule_builder.rb | 179 +++++ tool/lrama/lib/lrama/lexer.rb | 60 +- tool/lrama/lib/lrama/lexer/location.rb | 22 + tool/lrama/lib/lrama/lexer/token.rb | 26 +- tool/lrama/lib/lrama/lexer/token/parameterizing.rb | 21 +- tool/lrama/lib/lrama/lexer/token/tag.rb | 4 + tool/lrama/lib/lrama/lexer/token/user_code.rb | 58 +- tool/lrama/lib/lrama/options.rb | 3 +- tool/lrama/lib/lrama/output.rb | 4 +- tool/lrama/lib/lrama/parser.rb | 763 ++++++++++++--------- tool/lrama/lib/lrama/report/profile.rb | 13 +- tool/lrama/lib/lrama/version.rb | 2 +- tool/lrama/template/bison/yacc.c | 5 + 37 files changed, 1317 insertions(+), 890 deletions(-) create mode 100644 tool/lrama/lib/lrama/counterexamples/production_path.rb create mode 100644 tool/lrama/lib/lrama/counterexamples/start_path.rb create mode 100644 tool/lrama/lib/lrama/counterexamples/transition_path.rb create mode 100644 tool/lrama/lib/lrama/grammar/code/initial_action_code.rb create mode 100644 tool/lrama/lib/lrama/grammar/code/no_reference_code.rb create mode 100644 tool/lrama/lib/lrama/grammar/code/printer_code.rb create mode 100644 tool/lrama/lib/lrama/grammar/code/rule_action.rb create mode 100644 tool/lrama/lib/lrama/grammar/counter.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/base.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/list.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/nonempty_list.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/option.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/separated_list.rb create mode 100644 tool/lrama/lib/lrama/grammar/parameterizing_rules/builder/separated_nonempty_list.rb create mode 100644 tool/lrama/lib/lrama/grammar/rule_builder.rb create mode 100644 tool/lrama/lib/lrama/lexer/location.rb Latest commit hash = c56dd94db0 $$$[end] "make update-src -j4" exit with 0. $$$[beg] make after-update -j4 /tmp/ruby/src/trunk-jemalloc/revision.h updated generating x86_64-linux-fake.rb x86_64-linux-fake.rb updated generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-jemalloc/tool/ifchange /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision - /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision unchanged $$$[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 = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. compiling /tmp/ruby/src/trunk-jemalloc/version.c linking miniruby $$$[end] "make miniruby -j4" exit with 0. $$$[beg] make ruby -j4 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. builtin_binary.inc updated d9079095bb3fa7a9e685b033db80f027a72c333c343f7d76b4e914d92ff550a8 builtin_binary.inc compiling /tmp/ruby/src/trunk-jemalloc/builtin.c linking static-library libruby-static.a linking shared-library libruby.so.3.3.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 = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating encdb.h generating enc.mk 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 make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-jemalloc/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making encs ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' $$$[end] "make all -j4" exit with 0. $$$[beg] make install -j4 Update debug to 927587afb6aac69b358b86a01f602d207053e8d2 BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = -j4 --jobserver-auth=4,5 RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs echo 927587afb6aac69b358b86a01f602d207053e8d2 | /bin/sh /tmp/ruby/src/trunk-jemalloc/tool/ifchange /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision - generating encdb.h gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk /tmp/ruby/src/trunk-jemalloc/.bundle/.timestamp/debug.revision unchanged encdb.h unchanged making srcs under enc making enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating transdb.h transdb.h unchanged making trans generating makefiles ext/configure-ext.mk ext/configure-ext.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-jemalloc/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' ./miniruby -I/tmp/ruby/src/trunk-jemalloc/lib -I. -I.ext/common /tmp/ruby/src/trunk-jemalloc/tool/runruby.rb --extout=.ext -- --disable-gems -r./x86_64-linux-fake /tmp/ruby/src/trunk-jemalloc/tool/rbinstall.rb --make="make" --dest-dir="" --extout=".ext" --ext-build-dir="./ext" --mflags="-j4 --jobserver-auth=4,5" --make-flags=" -j4 --jobserver-auth=4,5" --data-mode=0644 --prog-mode=0755 --installed-list .installed.list --mantype="man" --gnumake --install=all --exclude=doc Installing to installing binary commands: /tmp/ruby/install/trunk-jemalloc/bin installing base libraries: /tmp/ruby/install/trunk-jemalloc/lib installing arch files: /tmp/ruby/install/trunk-jemalloc/lib/ruby/3.3.0+0/x86_64-linux installing pkgconfig data: /tmp/ruby/install/trunk-jemalloc/lib/pkgconfig installing extension objects: /tmp/ruby/install/trunk-jemalloc/lib/ruby/3.3.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-jemalloc/lib/ruby/site_ruby/3.3.0+0/x86_64-linux installing extension objects: /tmp/ruby/install/trunk-jemalloc/lib/ruby/vendor_ruby/3.3.0+0/x86_64-linux installing extension headers: /tmp/ruby/install/trunk-jemalloc/include/ruby-3.3.0+0/x86_64-linux installing extension scripts: /tmp/ruby/install/trunk-jemalloc/lib/ruby/3.3.0+0 installing extension scripts: /tmp/ruby/install/trunk-jemalloc/lib/ruby/site_ruby/3.3.0+0 installing extension scripts: /tmp/ruby/install/trunk-jemalloc/lib/ruby/vendor_ruby/3.3.0+0 installing extension headers: /tmp/ruby/install/trunk-jemalloc/include/ruby-3.3.0+0/ruby installing command scripts: /tmp/ruby/install/trunk-jemalloc/bin installing library scripts: /tmp/ruby/install/trunk-jemalloc/lib/ruby/3.3.0+0 installing common headers: /tmp/ruby/install/trunk-jemalloc/include/ruby-3.3.0+0 installing manpages: /tmp/ruby/install/trunk-jemalloc/share/man/man1 installing default gems from lib: /tmp/ruby/install/trunk-jemalloc/lib/ruby/gems/3.3.0+0 abbrev 0.1.1 base64 0.2.0 benchmark 0.3.0 bundler 2.5.0.dev cgi 0.4.0 csv 3.2.8 delegate 0.3.1 did_you_mean 1.6.3 drb 2.2.0 english 0.8.0 erb 4.0.3 error_highlight 0.5.1 fileutils 1.7.2 find 0.2.0 forwardable 1.3.3 getoptlong 0.2.1 ipaddr 1.2.5 irb 1.9.0 logger 1.6.0 mutex_m 0.2.0 net-http 0.4.0 net-protocol 0.2.2 observer 0.1.2 open-uri 0.4.0 open3 0.2.0 optparse 0.4.0 ostruct 0.6.0 pp 0.5.0 prettyprint 0.2.0 prism 0.17.1 pstore 0.1.3 rdoc 6.6.0 readline 0.0.3 reline 0.4.0 resolv 0.2.2 resolv-replace 0.1.1 rinda 0.2.0 ruby2_keywords 0.0.5 securerandom 0.3.0 set 1.0.3 shellwords 0.2.0 singleton 0.2.0 syntax_suggest 1.1.0 tempfile 0.2.0 time 0.3.0 timeout 0.4.1 tmpdir 0.2.0 tsort 0.2.0 un 0.3.0 uri 0.13.0 weakref 0.1.3 yaml 0.3.0 installing default gems from ext: /tmp/ruby/install/trunk-jemalloc/lib/ruby/gems/3.3.0+0 bigdecimal 3.1.5 date 3.3.4 digest 3.1.1 etc 1.4.3.dev.1 fcntl 1.1.0 fiddle 1.1.2 io-console 0.6.1.dev.1 io-nonblock 0.2.0 io-wait 0.3.0 json 2.6.3 nkf 0.1.3 openssl 3.2.0 pathname 0.3.0 psych 5.1.1.1 stringio 3.1.0 strscan 3.0.8 syslog 0.1.1 zlib 3.1.0 installing bundled gems: /tmp/ruby/install/trunk-jemalloc/lib/ruby/gems/3.3.0+0 minitest 5.20.0 power_assert 2.0.3 rake 13.1.0 test-unit 3.6.1 rexml 3.2.6 rss 0.3.0 net-ftp 0.2.0 net-imap 0.4.5 net-pop 0.1.2 net-smtp 0.4.0 matrix 0.4.2 prime 0.1.2 rbs 3.3.0 typeprof 0.21.8 debug 1.8.0 racc 1.7.3 installing bundled gem cache: /tmp/ruby/install/trunk-jemalloc/lib/ruby/gems/3.3.0+0/cache $$$[end] "make install -j4" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j4' PASS all 1862 tests $$$[end] "make yes-btest TESTOPTS='-q -j4'" exit with 0. $$$[beg] make yes-test-basic TESTS='-j4' BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Ignore setproctitle.o because of setproctitle.c under missing Ignore strlcat.o because of strlcat.c under missing Ignore strlcpy.o because of strlcpy.c under missing Checking leaked global symbols...none /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:condition ..OK 2 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:if/unless ...OK 3 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:case .....OK 5 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:while/until ........OK 8 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:exception ..........OK 10 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:array .......................................OK 39 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:hash ...........................OK 27 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:iterator ...........................................................................................................OK 107 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:float ................................................................................OK 80 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:bignum ...............................OK 31 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:string & char ..............................................................OK 62 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:assignment ..........OK 10 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:call ......OK 6 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:proc .........OK 9 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:signal ..OK 2 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:eval ...........................OK 27 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:system ........OK 8 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:const .....OK 5 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:clone .....OK 5 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:marshal ....OK 4 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:pack ....OK 4 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:math ..OK 2 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:struct ......OK 6 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:variable ............OK 12 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:trace ...OK 3 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:defined? ............OK 12 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:alias ......OK 6 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:path .......................OK 23 /tmp/ruby/src/trunk-jemalloc/basictest/test.rb:gc ....OK 4 test succeeded $$$[end] "make yes-test-basic TESTS='-j4'" exit with 0. $$$[beg] make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j4' BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-jemalloc/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' Run options: --seed=64378 "--ruby=./miniruby -I/tmp/ruby/src/trunk-jemalloc/lib -I. -I.ext/common /tmp/ruby/src/trunk-jemalloc/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/tmp/ruby/src/trunk-jemalloc/test/.excludes --name=!/memory_leak/ --stderr-on-failure -j4 # Running tests: [ 1/908] 1289333=test_rdoc_parser_simple [ 2/908] 1289336=test_ssl [ 3/908] 1289334=test_ractor_compatibility [ 4/908] 1289335=test_nkf [ 5/908] 1289335=test_set [ 6/908] 1289335=test_module [ 7/908] 1289333=test_rdoc_generator_pot_po_entry [ 8/908] 1289333=unescape_test [ 9/908] 1289334=test_gem_source_fetch_problem [ 10/908] 1289334=test_syslog_logger [ 11/908] 1289333=test_windows_1252 [ 12/908] 1289333=test_bmethod [ 13/908] 1289333=json_fixtures_test [ 14/908] 1289333=test_too_many_dummy_encodings [ 15/908] 1289333=test_argf [ 16/908] 1289335=test_rubyvm [ 17/908] 1289335=test_constant [ 18/908] 1289334=test_rdoc_rd_inline_parser [ 19/908] 1289334=test_rdoc_parser_c [ 20/908] 1289334=test_pattern_key_name_check [ 21/908] 1289334=test_m17n [ 22/908] 1289334=test_keyword [ 23/908] 1289334=test_yjit [ 24/908] 1289336=test_encoding [ 25/908] 1289336=test_propertyputref [ 26/908] 1289336=test_rdoc_markup_verbatim [ 27/908] 1289336=test_null [ 28/908] 1289336=test_scan_args [ 29/908] 1289336=test_getopts [ 30/908] 1289336=test_rdoc_markup_to_markdown [ 31/908] 1289336=test_gem_silent_ui [ 32/908] 1289336=test_rdoc_parser_rd [ 33/908] 1289336=test_rdoc_single_class [ 34/908] 1289336=test_depth_first [ 35/908] 1289336=test_gem_resolver_api_set [ 36/908] 1289336=test_gem_package_tar_header [ 37/908] 1289336=test_gem_commands_mirror [ 38/908] 1289336=test_win32ole_variant_m [ 39/908] 1289336=test_hash [ 40/908] 1289334=test_stream [ 41/908] 1289334=test_cclass [ 42/908] 1289334=test_rdoc_token_stream [ 43/908] 1289334=test_ossl [ 44/908] 1289336=test_extlibs [ 45/908] 1289336=test_load [ 46/908] 1289336=test_transcode [ 47/908] 1289336=test_time [ 48/908] 1289336=test_convertible [ 49/908] 1289333=json_string_matching_test [ 50/908] 1289333=test_json_tree [ 51/908] 1289333=test_method_cache [ 52/908] 1289333=test_ruby_lex [ 53/908] 1289334=test_rdoc_generator_json_index [ 54/908] 1289334=test_gem_resolver_installed_specification [ 55/908] 1289334=test_severity [ 56/908] 1289334=test_ractor [ 57/908] 1289334=test_fileutils [ 58/908] 1289333=test_rdoc_encoding [ 59/908] 1289333=test_nil2vtempty [ 60/908] 1289333=test_rdoc_servlet [ 61/908] 1289333=test_rdoc_markdown [ 62/908] 1289333=test_object [ 63/908] 1289333=test_readpartial [ 64/908] 1289333=test_rdoc_constant [ 65/908] 1289333=test_deprecate [ 66/908] 1289333=test_date_marshal [ 67/908] 1289333=test_bash_completion [ 68/908] 1289333=test_gem_source_subpath_problem [ 69/908] 1289333=test_gc [ 70/908] 1289334=test_date_strftime [ 71/908] 1289334=test_fixnum [ 72/908] 1289334=test_signal [ 73/908] 1289334=test_stringchar [ 74/908] 1289334=test_kill_ring [ 75/908] 1289334=test_logger [ 76/908] 1289334=test_gem_validator [ 77/908] 1289334=test_case [ 78/908] 1289334=test_common [ 79/908] 1289334=test_gem_request [ 80/908] 1289334=test_key_stroke [ 81/908] 1289334=test_gem_commands_exec_command [ 82/908] 1289335=errors_test [ 83/908] 1289335=test_libs [ 84/908] 1289335=test_math [ 85/908] 1289335=test_basicsocket [ 86/908] 1289335=test_gc [ 87/908] 1289335=test_rendering [ 88/908] 1289335=test_raise_no_backtrace_exception [ 89/908] 1289335=test_import [ 90/908] 1289335=test_vm_dump [ 91/908] 1289335=test_parser_events [ 92/908] 1289335=test_helper [ 93/908] 1289335=test_enumerator [ 94/908] 1289335=test_cgi_header [ 95/908] 1289335=test_gem_security_trust_dir [ 96/908] 1289334=version_test [ 97/908] 1289335=test_tuplebag [ 98/908] 1289335=test_rdoc_markup_paragraph [ 99/908] 1289334=test_gem_resolver_installer_set [100/908] 1289335=test_gem_security_policy [101/908] 1289334=test_string_processing [102/908] 1289334=test_safe_load [103/908] 1289334=test_sexp [104/908] 1289334=test_fips [105/908] 1289335=test_name_error [106/908] 1289334=test_regex_casefold [107/908] 1289335=test_http [108/908] 1289335=test_object_create_start [109/908] 1289335=test_gem_source_git [110/908] 1289334=compiler_test [111/908] 1289334=test_timeout [112/908] 1289334=test_summary [113/908] 1289334=test_foreach [114/908] 1289334=test_str2big [115/908] 1289334=test_win32ole_type [116/908] 1289334=test_pointer [117/908] 1289334=test_struct [118/908] 1289334=test_gem_commands_sources_command [119/908] 1289333=test_date_time [120/908] 1289333=test_data [121/908] 1289333=test_big5 [122/908] 1289333=test_mutex [123/908] 1289334=test_gem_bundler_version_finder [124/908] 1289334=test_ole_methods [125/908] 1289334=test_tcp [126/908] 1289335=test_string_memory [127/908] 1289335=test_unicode_escape [128/908] 1289335=test_gem_requirement [129/908] 1289333=test_line_editor [130/908] 1289334=test_rdoc_markup [131/908] 1289333=test_webauthn_listener_response [132/908] 1289334=test_complex2 [133/908] 1289334=test_rdoc_i18n_locale [134/908] 1289334=test_kernel [135/908] 1289333=test_tree_builder [136/908] 1289333=test_gem_stub_specification [137/908] 1289335=test_popen_deadlock [138/908] 1289333=!Nothing_to_test [139/908] 1289333=test_typeddata [140/908] 1289333=test_protect [141/908] 1289333=test_gem_commands_list_command [142/908] 1289333=test_class [143/908] 1289333=test_history [144/908] 1289333=test_trick [145/908] 1289334=test_flags [146/908] 1289335=test_integer [147/908] 1289334=test_gem_commands_install_command [148/908] 1289336=test_files_sample [149/908] 1289336=test_win32ole_variant_outarg [150/908] 1289336=test_gem_commands_build_command [151/908] 1289333=test_gem_commands_help_command [152/908] 1289336=test_iseq_load [153/908] 1289333=test_console_attr [154/908] 1289333=test_numeric [155/908] 1289333=test_inlinecache [156/908] 1289333=test_marshal [157/908] 1289335=test_word [158/908] 1289335=test_ubf_async_safe [159/908] 1289335=test_case_mapping [160/908] 1289335=test_assignment [161/908] 1289333=test_ractor [162/908] 1289336=location_test [163/908] 1289333=test_rdoc_markup_to_html_snippet [164/908] 1289333=test_ssl [165/908] 1289336=test_win32ole_record [166/908] 1289336=test_rdoc_generator_ri [167/908] 1289336=test_gem_stream_ui [168/908] 1289336=test_pkcs7 [169/908] 1289336=test_history [170/908] 1289333=test_gem [171/908] 1289335=test_rdoc_method_attr [172/908] 1289335=test_optarg [173/908] 1289335=test_parser [174/908] 1289335=test_cgi_core [175/908] 1289335=test_exception [176/908] 1289335=ruby_api_test [177/908] 1289335=test_gem_resolver_requirement_list [178/908] 1289335=test_gc_compact [179/908] 1289335=test_arith_seq_beg_len_step [180/908] 1289335=ripper_compat_test [181/908] 1289335=test_did_you_mean [182/908] 1289335=test_gem_config_file [183/908] 1289336=test_have_func [184/908] 1289335=test_gem_commands_pristine_command [185/908] 1289333=test_yjit_exit_locations [186/908] 1289333=test_gem_package_tar_reader [187/908] 1289333=test_gem_local_remote_options [188/908] 1289333=test_rdoc_stats [189/908] 1289333=test_yaml_tree [190/908] 1289333=test_case_comprehensive [191/908] 1289336=test_rdoc_attr [192/908] 1289336=test_rdoc_store [193/908] 1289334=test_time_tz [194/908] 1289334=test_debug [195/908] 1289334=test_gem_gem_runner [196/908] 1289334=test_rdoc_generator_pot_po [197/908] 1289334=test_rdoc_context_section [198/908] 1289334=test_rdoc_generator_pot [199/908] 1289334=test_instrumentation_api [200/908] 1289336=test_gem_impossible_dependencies_error [201/908] 1289336=test_win32ole_param [202/908] 1289336=test_emoji_breaks [203/908] 1289334=test_ractor [204/908] 1289334=test_date_parse [205/908] 1289334=test_read [206/908] 1289334=test_formatter [207/908] 1289334=test_array_create [208/908] 1289334=test_pkey_ec [209/908] 1289334=test_gem_command [210/908] 1289334=test_thread [211/908] 1289334=test_rat [212/908] 1289334=test_external_new [213/908] 1289334=test_symbol [214/908] 1289334=test_win32ole_typelib [215/908] 1289334=test_backtrace [216/908] 1289334=test_gem_resolver_lock_set [217/908] 1289334=test_webauthn_poller [218/908] 1289334=test_require [219/908] 1289336=test_gem_security [220/908] 1289334=test_ancdata [221/908] 1289334=test_color_printer [222/908] 1289334=test_gem_update_suggestion [223/908] 1289334=test_store [224/908] 1289334=test_dir_m17n [225/908] 1289334=test_cgi_cookie [226/908] 1289334=test_modify_expand [227/908] 1289334=test_gem_package_old [228/908] 1289334=test_cgi_tag_helper [229/908] 1289334=test_gem_request_set_lockfile_tokenizer [230/908] 1289334=test_gem_available_set [231/908] 1289334=test_io [232/908] 1289335=test_pkey_dh [233/908] 1289335=test_duplicate [234/908] 1289335=test_metaclass [235/908] 1289335=test_gem_spec_fetcher [236/908] 1289335=test_singleton [237/908] 1289335=test_process [238/908] 1289335=test_gem_source_vendor [239/908] 1289335=test_variable_name_check [240/908] 1289335=test_rubygems [241/908] 1289335=test_gem_doctor [242/908] 1289335=test_change_word [243/908] 1289335=test_etc [244/908] 1289335=pattern_test [245/908] 1289335=test_config [246/908] 1289335=test_gem_commands_outdated_command [247/908] 1289335=test_string [248/908] 1289335=test_iterator [249/908] 1289335=test_rdoc_normal_class [250/908] 1289335=test_new [251/908] 1289335=test_gem_installer [252/908] 1289336=test_qsort [253/908] 1289336=test_storage [254/908] 1289336=test_gem_resolver_git_set [255/908] 1289336=test_cipher [256/908] 1289336=test_pack [257/908] 1289336=library_symbols_test [258/908] 1289336=test_types [259/908] 1289336=json_addition_test [260/908] 1289336=test_rdoc_markup_to_rdoc [261/908] 1289336=test_io_buffer [262/908] 1289336=test_ipaddr [263/908] 1289336=memsize_test [264/908] 1289336=test_table [265/908] 1289336=test_require_lib [266/908] 1289333=test_bigmath [267/908] 1289333=test_config [268/908] 1289333=test_objectspace [269/908] 1289333=test_variable [270/908] 1289333=test_cparser [271/908] 1289333=test_bug_reporter [272/908] 1289333=test_profile_frames [273/908] 1289333=test_unicode_normalize [274/908] 1289335=test_emitter [275/908] 1289335=test_data [276/908] 1289335=test_engine [277/908] 1289335=test_skip_lines [278/908] 1289335=test_key_error [279/908] 1289335=test_rdoc_code_object [280/908] 1289336=test_key_actor_vi [281/908] 1289336=test_object [282/908] 1289335=test_enc_raise [283/908] 1289335=test_reline_key [284/908] 1289335=test_random_formatter [285/908] 1289335=test_rdoc_markup_formatter [286/908] 1289335=test_func [287/908] 1289336=test_yaml [288/908] 1289336=test_rdoc_alias [289/908] 1289336=test_gem_uninstaller [290/908] 1289336=test_gem_commands_info_command [291/908] 1289336=test_rand [292/908] 1289336=test_regexp [293/908] 1289335=test_type_completor [294/908] 1289335=test_gem_platform [295/908] 1289335=test_parse [296/908] 1289333=test_bigzero [297/908] 1289333=test_class2name [298/908] 1289333=test_x509cert [299/908] 1289335=test_stringio [300/908] 1289333=test_logdevice [301/908] 1289335=test_rdoc_rd [302/908] 1289335=test_rdoc_markup_attribute_manager [303/908] 1289335=test_helper [304/908] 1289335=test_econv [305/908] 1289334=test_logperiod [306/908] 1289334=test_rdoc_markup_hard_break [307/908] 1289334=test_gem_resolver_composed_set [308/908] 1289334=test_files_test_2 [309/908] 1289333=test_gem_resolver_local_specification [310/908] 1289333=test_require [311/908] 1289335=test_win32ole_type_event [312/908] 1289335=test_ns_spki [313/908] 1289335=test_stack [314/908] 1289335=test_key_name_check [315/908] 1289335=test_boolean [316/908] 1289335=test_addr [317/908] 1289335=test_config [318/908] 1289335=test_rdoc_comment [319/908] 1289335=test_gem_commands_check_command [320/908] 1289335=test_ftp [321/908] 1289335=test_kwargs [322/908] 1289335=test_io [323/908] 1289335=test_io_wait [324/908] 1289335=test_thread_fd_close [325/908] 1289335=test_class_name_check [326/908] 1289335=test_autoconf [327/908] 1289335=test_cgi_multipart [328/908] 1289335=test_patterns [329/908] 1289335=test_yamldbm [330/908] 1289335=test_https [331/908] 1289335=test_rdoc_i18n_text [332/908] 1289335=test_evaluation [333/908] 1289335=test_gem_ext_cargo_builder_link_flag_converter [334/908] 1289335=test_fstring [335/908] 1289336=test_gem_source_installed [336/908] 1289336=test_syslog [337/908] 1289335=test_struct [338/908] 1289336=test_gem_source_list [339/908] 1289335=test_yaml_special_cases [340/908] 1289335=test_ensured [341/908] 1289336=test_completion [342/908] 1289335=test_class [343/908] 1289333=fuzzer_test [344/908] 1289334=test_const [345/908] 1289333=test_rdoc_markup_raw [346/908] 1289333=test_lambda [347/908] 1289334=test_quote_empty [348/908] 1289334=test_rational2 [349/908] 1289334=test_euc_kr [350/908] 1289334=test_project_sanity [351/908] 1289333=test_rational [352/908] 1289333=test_yamlstore [353/908] 1289333=test_primitive [354/908] 1289334=test_switch_hitter [355/908] 1289334=test_continuation [356/908] 1289333=test_ocsp [357/908] 1289334=test_enumerator_kw [358/908] 1289334=test_ractor [359/908] 1289334=test_big2str [360/908] 1289334=test_gem_ext_configure_builder [361/908] 1289336=test_delete [362/908] 1289334=test_ansi_with_terminfo [363/908] 1289334=test_gem_commands_uninstall_command [364/908] 1289336=test_at_exit [365/908] 1289333=test_placearg [366/908] 1289333=test_document [367/908] 1289333=test_proc [368/908] 1289336=test_zlib [369/908] 1289334=test_rdoc_markup_to_table_of_contents [370/908] 1289334=test_hash_create [371/908] 1289334=test_rb_str_dup [372/908] 1289333=test_encoding [373/908] 1289334=test_io_m17n [374/908] 1289333=test_read [375/908] 1289333=test_irb [376/908] 1289333=test_gem_request_connection_pools [377/908] 1289333=test_files_ext [378/908] 1289333=test_function [379/908] 1289333=test_gem_commands_lock_command [380/908] 1289333=test_sockopt [381/908] 1289333=dispatcher_test [382/908] 1289333=test_eval_history [383/908] 1289333=test_drbunix [384/908] 1289334=test_arity [385/908] 1289334=test_files_test [386/908] 1289334=test_tempfile [387/908] 1289334=test_err_in_callback [388/908] 1289335=test_object_references [389/908] 1289334=test_gem_commands_update_command [390/908] 1289335=test_gem_resolver_vendor_set [391/908] 1289335=test_pipe [392/908] 1289335=test_shift_jis [393/908] 1289335=test_rdoc_cross_reference [394/908] 1289335=test_ldap [395/908] 1289335=test_reqarg [396/908] 1289335=test_resource [397/908] 1289335=test_http [398/908] 1289334=test_hash [399/908] 1289334=test_http_request [400/908] 1289334=test_win32ole_param_event [401/908] 1289334=test_rdoc_any_method [402/908] 1289334=test_thread [403/908] 1289336=test_function_entry [404/908] 1289336=test_printf [405/908] 1289336=test_koi8 [406/908] 1289336=test_unicode [407/908] 1289336=test_filter [408/908] 1289336=test_time [409/908] 1289336=test_complexrational [410/908] 1289336=test_type [411/908] 1289336=test_observer [412/908] 1289336=test_thread_cv [413/908] 1289336=test_undef [414/908] 1289336=test_gem_commands_setup_command [415/908] 1289333=test_gem_package_tar_reader_entry [416/908] 1289333=test_invalid [417/908] 1289333=test_tmpdir [418/908] 1289336=test_x509attr [419/908] 1289336=ractor_test [420/908] 1289336=test_wait [421/908] 1289333=test_bignum [422/908] 1289336=test_yield [423/908] 1289333=test_euc_tw [424/908] 1289333=test_integer_comb [425/908] 1289335=test_rdoc_parser [426/908] 1289335=test_capacity [427/908] 1289335=test_alias_and_anchor [428/908] 1289335=test_nextafter [429/908] 1289335=test_win32ole_method_event [430/908] 1289335=test_cmethod [431/908] 1289335=test_install [432/908] 1289335=test_comparable [433/908] 1289335=test_integer [434/908] 1289335=test_date [435/908] 1289335=test_pair [436/908] 1289336=parse_comments_test [437/908] 1289336=test_clone [438/908] 1289333=test_gem_commands_server_command [439/908] 1289333=test_io_timeout [440/908] 1289333=test_delegation [441/908] 1289333=test_gem_resolver_index_set [442/908] 1289336=test_lexer [443/908] 1289333=test_random [444/908] 1289336=test_grapheme_breaks [445/908] 1289336=test_gb18030 [446/908] 1289333=test_gem_gemcutter_utilities [447/908] 1289336=test_folderitem2_invokeverb [448/908] 1289336=test_arith_seq_extract [449/908] 1289336=test_pinned [450/908] 1289333=test_win32ole_event [451/908] 1289333=test_enc_str_buf_cat [452/908] 1289333=test_gem_version [453/908] 1289336=test_memory_view [454/908] 1289333=test_gem_ext_cargo_builder [455/908] 1289333=test_to_ruby [456/908] 1289333=test_gem_request_set_gem_dependency_api [457/908] 1289336=test_gem_source_local [458/908] 1289336=test_wss [459/908] 1289336=test_exit [460/908] 1289336=test_drbobject [461/908] 1289333=test_mul [462/908] 1289334=test_nil [463/908] 1289333=test_ansi_without_terminfo [464/908] 1289336=test_unix [465/908] 1289333=test_digest [466/908] 1289334=test_init [467/908] 1289333=test_gem_commands_unpack_command [468/908] 1289336=test_closure [469/908] 1289334=test_x509store [470/908] 1289334=test_symbol [471/908] 1289333=test_coder [472/908] 1289333=test_ellipsize [473/908] 1289333=test_file [474/908] 1289335=test_dot_dot [475/908] 1289333=test_context [476/908] 1289335=test_weakmap Leaked file descriptor: TestIRB::ContextTest#test_build_completor: 7 : #<File:/tmp/ruby/install/trunk-jemalloc/lib/ruby/gems/3.3.0+0/specifications/default/abbrev-0.1.1.gemspec> Leaked thread: TestIRB::ContextTest#test_build_completor: #<Thread:0x00007f2281bd7a68 /tmp/ruby/src/trunk-jemalloc/lib/irb/type_completion/types.rb:16 sleep> Closed file descriptor: TestIRB::ContextTest#test_default_return_format: 7 Finished thread: TestIRB::ContextTest#test_default_return_format: #<Thread:0x00007f2281bd7a68 /tmp/ruby/src/trunk-jemalloc/lib/irb/type_completion/types.rb:16 dead> [477/908] 1289336=test_pkcs12 [478/908] 1289333=test_gem_commands_which_command [479/908] 1289333=test_case_options [480/908] 1289333=test_fiber [481/908] 1289336=test_refinement [482/908] 1289334=test_usrmarshal [483/908] 1289334=test_mutex_m [484/908] 1289334=test_x509crl [485/908] 1289334=test_httpresponses [486/908] 1289334=test_cgi_session [487/908] 1289334=test_ripper [488/908] 1289334=test_optimization [489/908] 1289333=test_gem_dependency_resolution_error [490/908] 1289333=test_gem_ext_ext_conf_builder [491/908] 1289336=test_buffered_io [492/908] 1289336=test_gem_commands_cleanup_command [493/908] 1289333=test_read_write [494/908] 1289333=test_path_to_class [495/908] 1289333=test_utf16 [496/908] 1289333=test_unconverted_fields [497/908] 1289333=test_gem_request_set_lockfile_parser [498/908] 1289333=test_sprintf [499/908] 1289333=test_autoload [500/908] 1289336=test_backtrace [501/908] 1289336=test_dln [502/908] 1289336=test_x509name [503/908] 1289336=test_rdoc_task [504/908] 1289336=test_nofree [505/908] 1289336=test_set [506/908] 1289336=test_scalar_scanner [507/908] 1289336=test_rdoc_normal_module [508/908] 1289336=test_rdoc_markdown_test [509/908] 1289335=test_gem_source_lock [510/908] 1289335=test_gem_security_signer [511/908] 1289335=test_pkg_config [512/908] 1289335=test_default_gems [513/908] 1289335=test_my_integer [514/908] 1289335=test_buffering [515/908] 1289335=test_gem_version_option [516/908] 1289335=encoding_test [517/908] 1289336=test_option [518/908] 1289336=test_insns_leaf [519/908] 1289336=test_abbrev [520/908] 1289336=test_liberal_parsing [521/908] 1289336=test_member [522/908] 1289336=test_flip [523/908] 1289336=test_win32ole_variant [524/908] 1289336=test_x509req [525/908] 1289334=test_syntax [526/908] 1289336=test_rdoc_parser_changelog [527/908] 1289336=parameters_signature_test [528/908] 1289336=test_c_union_entity [529/908] 1289336=bom_test [530/908] 1289336=test_file [531/908] 1289336=test_column_separator [532/908] 1289336=test_io_console [533/908] 1289336=comments_test [534/908] 1289336=test_io_wait_uncommon [535/908] 1289336=test_acl [536/908] 1289336=test_base64 [537/908] 1289336=test_cmd [538/908] 1289333=test_gem_ext_cmake_builder [539/908] 1289333=test_scope [540/908] 1289333=test_gem_dependency_list [541/908] 1289333=test_last_thread [542/908] 1289333=test_monitor [543/908] 1289336=test_c_struct_builder [544/908] 1289333=test_gem_install_update_options [545/908] 1289336=test_bn [546/908] 1289336=test_gem_rdoc [547/908] 1289333=test_digest_extend [548/908] 1289336=test_pkey_rsa [549/908] 1289333=test_whileuntil [550/908] 1289333=test_numhash [551/908] 1289333=test_getoptlong [552/908] 1289333=test_rdoc_markup_to_ansi [553/908] 1289333=test_generic [554/908] 1289333=test_gem_resolver_index_specification [555/908] 1289333=test_singleton_function [556/908] 1289333=test_debug_cmd [557/908] 1289333=test_workspace [558/908] 1289336=test_framework [559/908] 1289336=test_passing_block [560/908] 1289336=test_eval [561/908] 1289333=test_kconv [562/908] 1289333=test_gem_name_tuple [563/908] 1289333=test_date_attr [564/908] 1289333=test_bigdecimal [565/908] 1289336=test_rdoc_tom_doc [566/908] 1289336=test_gem_resolver [567/908] 1289336=test_sorted_set [568/908] 1289336=test_resize [569/908] 1289336=test_emoji [570/908] 1289336=test_condition [571/908] 1289336=test_cp949 [572/908] 1289336=test_erb [573/908] 1289336=json_generic_object_test [574/908] 1289336=test_httpresponse [575/908] 1289336=test_rdoc_parser_ruby [576/908] 1289334=locals_test [577/908] 1289333=parse_test [578/908] 1289334=test_x509ext [579/908] 1289334=test_verbose [580/908] 1289334=test_gem_commands_push_command [581/908] 1289336=test_rdoc_markup_to_bs [582/908] 1289336=test_date_strptime [583/908] 1289336=test_gem_safe_marshal [584/908] 1289334=test_rdoc_extend [585/908] 1289334=test_gbk [586/908] 1289334=test_merge_keys [587/908] 1289334=test_string [588/908] 1289335=test_euc_jp [589/908] 1289335=test_flush [590/908] 1289335=test_load [591/908] 1289335=test_error_highlight [592/908] 1289335=test_spell_checker [593/908] 1289335=test_open3 [594/908] 1289336=test_win32ole_method [595/908] 1289336=test_rbconfig [596/908] 1289336=test_call [597/908] 1289336=test_drb [598/908] 1289334=test_random [599/908] 1289334=test_gem_resolver_conflict [600/908] 1289334=test_gem_resolver_lock_specification [601/908] 1289334=test_noarg [602/908] 1289334=test_gem_commands_contents_command [603/908] 1289334=test_rdoc_markup_to_html_crossref [604/908] 1289334=test_bigdecimal_util [605/908] 1289334=test_gem_resolver_best_set [606/908] 1289334=test_write [607/908] 1289334=test_utf32 [608/908] 1289334=test_gem_commands_environment_command [609/908] 1289334=test_threadgroup [610/908] 1289333=test_array [611/908] 1289334=test_rdoc_generator_markup [612/908] 1289334=test_bug-14834 [613/908] 1289334=test_rdoc_markup_document [614/908] 1289334=test_row_separator [615/908] 1289334=test_gem_commands_dependency_command [616/908] 1289334=test_rdoc_markup_parser [617/908] 1289334=test_terminfo [618/908] 1289334=test_gem_commands_search_command [619/908] 1289334=test_cesu8 [620/908] 1289334=test_gem_commands_specification_command [621/908] 1289334=test_arithmetic_sequence [622/908] 1289334=test_addrinfo [623/908] 1289335=regexp_test [624/908] 1289335=test_rdoc_markup_to_tt_only [625/908] 1289335=test_address_resolve [626/908] 1289334=test_date_ractor [627/908] 1289335=test_gem_commands_signin_command [628/908] 1289335=test_iso_8859 [629/908] 1289335=json_generator_test [630/908] 1289334=test_parser [631/908] 1289334=test_cgi_util [632/908] 1289335=test_num2int [633/908] 1289335=test_rdoc_context [634/908] 1289334=test_open-uri [635/908] 1289335=test_iter_break [636/908] 1289335=test_serialize_subclasses [637/908] 1289335=test_dryrun [638/908] 1289335=test_enum [639/908] 1289334=test_handle [640/908] 1289334=test_gem_source_specific_file [641/908] 1289334=test_ractor [642/908] 1289334=test_kdf [643/908] 1289335=test_general [644/908] 1289334=test_pattern_matching [645/908] 1289334=test_rubyoptions [646/908] 1289335=test_set_len [647/908] 1289335=test_gem_text [648/908] 1289335=test_psych [649/908] 1289335=test_settracefunc [650/908] 1289335=test_win32ole [651/908] 1289335=test_zsh_completion [652/908] 1289335=test_data_converters [653/908] 1289335=test_asn1 [654/908] 1289335=test_gem_commands_open_command [655/908] 1289335=json_common_interface_test [656/908] 1289335=test_features [657/908] 1289336=test_method_cache [658/908] 1289336=test_quote_char_nil [659/908] 1289336=test_rdoc_markup_pre_process [660/908] 1289335=test_sprintf_comb [661/908] 1289335=test_rdoc_rd_block_parser [662/908] 1289335=test_scheduler [663/908] 1289336=test_rdoc_ri_paths [664/908] 1289336=test_digest Skipping Gem::PackageTask tests. rake not found. [665/908] 1289335=test_gem_package_task [666/908] 1289335=test_fiddle [667/908] 1289335=test_omap [668/908] 1289335=test_case [669/908] 1289335=test_yield_block [670/908] 1289335=test_complex [671/908] 1289335=test_ractor [672/908] 1289335=test_shellwords [673/908] 1289336=test_gem_request_set_lockfile [674/908] 1289335=test_postponed_job [675/908] 1289335=test_rdoc_markup_attributes [676/908] 1289335=test_recursion [677/908] 1289335=test_pty [678/908] 1289336=test_windows_1251 [679/908] 1289336=test_frozen [680/908] 1289336=test_float [681/908] 1289335=test_rdoc_parser_markdown [682/908] 1289335=test_ractor [683/908] 1289335=test_delegate [684/908] 1289335=test_gem_ext_cargo_builder_unit [685/908] 1289335=test_thread_queue [686/908] 1289336=test_memory_view [687/908] 1289336=test_nowrite [688/908] 1289336=test_alias [689/908] 1289336=test_ostruct [690/908] 1289336=test_process [691/908] 1289333=test_tsort [692/908] 1289333=test_exception [693/908] 1289335=test_rdoc_ri_driver [694/908] 1289335=test_append [695/908] 1289335=test_httpheader [696/908] 1289335=test_protocol [697/908] 1289335=test_rendering [698/908] 1289335=test_gem_commands_query_command [699/908] 1289333=test_dns [700/908] 1289333=test_file_exhaustive [701/908] 1289335=test_acceptable [702/908] 1289335=test_erb_command [703/908] 1289335=test_rdoc_markup_heading [704/908] 1289335=test_gem_resolver_vendor_specification [705/908] 1289335=test_header [706/908] 1289335=test_cstr [707/908] 1289335=test_require_path_check [708/908] 1289335=test_securerandom [709/908] 1289335=test_input_method [710/908] 1289335=test_rdoc_rubygems_hook [711/908] 1289335=test_dup [712/908] 1289334=test_rdoc_class_module [713/908] 1289335=test_deprecated [714/908] 1289335=heredoc_dedent_test [715/908] 1289335=test_ssl_session [716/908] 1289334=test_beginendblock [717/908] 1289335=test_reline [718/908] 1289335=test_abi [719/908] 1289335=test_name_error_extension [720/908] 1289335=test_gem_commands_generate_index_command [721/908] 1289334=test_within_pipe [722/908] 1289335=test_div [723/908] 1289335=test_m17n_comb [724/908] 1289334=test_marshalable [725/908] 1289334=test_find [726/908] 1289334=test_uncorrectable_name_check [727/908] 1289334=test_gem_commands_stale_command [728/908] 1289334=test_gem_resolver_git_specification [729/908] 1289334=test_pp [730/908] 1289334=test_stream [731/908] 1289334=test_method [732/908] 1289334=test_rdoc_markup_to_label [733/908] 1289334=json_parser_test [734/908] 1289334=test_coderange [735/908] 1289334=test_ast [736/908] 1289335=test_update [737/908] 1289335=test_pathname [738/908] 1289335=test_socket [739/908] 1289335=test_stringscanner [740/908] 1289335=test_coverage [741/908] 1289333=test_super [742/908] 1289335=test_system [743/908] 1289333=test_gem_package_tar_writer [744/908] 1289333=test_each [745/908] 1289333=test_weakkeymap [746/908] 1289333=test_rdoc_markup_indented_paragraph [747/908] 1289333=desugar_compiler_test [748/908] 1289333=test_gem_indexer [749/908] 1289335=test_gem_commands_cert_command [750/908] 1289333=test_to_ary_concat [751/908] 1289335=test_c_struct_entry [752/908] 1289336=test_enc_associate [753/908] 1289336=test_drbssl [754/908] 1289335=newline_test [755/908] 1289335=test_mailto [756/908] 1289335=test_sleep [757/908] 1289335=test_not [758/908] 1289335=test_gem_command_manager [759/908] 1289335=test_scalar [760/908] 1289335=json_encoding_test [761/908] 1289335=test_gem_ext_rake_builder [762/908] 1289335=test_sizeof [763/908] 1289333=test_remote_fetch_error [764/908] 1289333=test_face [765/908] 1289333=test_compile_prism [766/908] 1289333=test_literal [767/908] 1289333=test_rdoc_options [768/908] 1289333=test_pstore [769/908] 1289333=test_rdoc_markup_to_joined_paragraph [770/908] 1289333=test_rdoc_markup_to_html [771/908] 1289333=test_interned_str [772/908] 1289333=test_pack [773/908] 1289333=test_len [774/908] 1289333=test_bundled_ca [775/908] 1289333=test_exception_at_throwing [776/908] 1289333=test_thread [777/908] 1289333=test_rdoc_include [778/908] 1289333=test_mixed_unicode_escapes [779/908] 1289333=test_array [780/908] 1289333=test_ractor [781/908] 1289333=test_win32ole_variable [782/908] 1289333=test_date_arith [783/908] 1289333=test_gem_commands_fetch_command [784/908] 1289333=test_date_new [785/908] 1289333=test_ractor [786/908] 1289333=test_pkey [787/908] 1289333=test_notimplement [788/908] 1289333=test_frozen_error [789/908] 1289333=test_rdoc_text [790/908] 1289333=test_gem_resolver_api_specification [791/908] 1289333=test_trace [792/908] 1289333=test_arity [793/908] 1289333=test_gem_specification [794/908] 1289333=test_require [795/908] 1289333=test_provider [796/908] 1289333=test_signedness [797/908] 1289336=test_forwardable [798/908] 1289336=test_https_proxy [799/908] 1289336=test_have_library [800/908] 1289335=constant_path_node_test [801/908] 1289335=test_emitter [802/908] 1289335=test_bug-5832 [803/908] 1289335=test_gem_request_set [804/908] 1289336=test_internal_ivar [805/908] 1289336=test_tree_spell_checker [806/908] 1289336=test_rinda [807/908] 1289335=test_string [808/908] 1289335=test_row [809/908] 1289335=test_sleep [810/908] 1289336=test_raise [811/908] 1289336=test_objspace [812/908] 1289335=test_tracepoint [813/908] 1289335=test_have_macro [814/908] 1289335=test_general [815/908] 1289335=test_rdoc_top_level [816/908] 1289335=test_recorder [817/908] 1289335=test_configuration [818/908] 1289335=test_converters [819/908] 1289335=test_shapes [820/908] 1289335=test_fnmatch [821/908] 1289335=test_iseq [822/908] 1289335=test_gem_commands_owner_command [823/908] 1289333=test_gem_resolver_dependency_request [824/908] 1289333=test_key_event_record [825/908] 1289333=test_erb_m17n [826/908] 1289333=test_rdoc_generator_darkfish [827/908] 1289335=test_gem_path_support [828/908] 1289335=test_files_test_1 [829/908] 1289333=test_enumerator [830/908] 1289333=test_gem_dependency_installer [831/908] 1289334=test_eval [832/908] 1289334=test_rdoc_rd_inline [833/908] 1289334=test_nesting_parser [834/908] 1289334=test_gem_unsatisfiable_dependency_error [835/908] 1289334=test_dir [836/908] 1289335=test_gem_uri [837/908] 1289335=test_bug-3571 [838/908] 1289333=test_defined [839/908] 1289335=test_ifunless [840/908] 1289335=test_gem_ext_builder [841/908] 1289334=test_gem_remote_fetcher [842/908] 1289333=test_rewind [843/908] 1289333=test_config [844/908] 1289333=json_ext_parser_test [845/908] 1289333=test_gem_commands_yank_command [846/908] 1289335=magic_comment_test [847/908] 1289335=test_gem_commands_signout_command [848/908] 1289335=test_date_compat [849/908] 1289335=test_pack [850/908] 1289335=test_enumerable [851/908] 1289335=test_scanner_events [852/908] 1289335=test_nomethod_error [853/908] 1289335=test_human_typo [854/908] 1289335=test_mkmf [855/908] 1289335=test_egrep_cpp [856/908] 1289333=test_date_conv [857/908] 1289333=test_force_quotes [858/908] 1289333=test_inadvertent_creation [859/908] 1289333=test_method_name_check [860/908] 1289333=test_gem_resolver_activation_request [861/908] 1289333=test_type_analyze [862/908] 1289333=test_cgi_modruby [863/908] 1289333=test_webauthn_listener Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_get_follows_options: 11 : #<TCPSocket:fd 11, AF_INET, 127.0.0.1, 46763> [864/908] 1289333=test_gem_util [865/908] 1289334=test_stat [866/908] 1289334=test_pkey_dsa [867/908] 1289333=test_gem_package [868/908] 1289335=test_gem_resolver_specification [869/908] 1289335=test_color [870/908] 1289334=test_queue [871/908] 1289335=test_fd_setsize [872/908] 1289335=test_env [873/908] 1289334=test_gem_dependency [874/908] 1289334=test_jaro_winkler [875/908] 1289334=test_prettyprint [876/908] 1289334=test_timeout [877/908] 1289334=test_ws [878/908] 1289334=test_weakref [879/908] 1289334=test_macro [880/908] 1289334=test_gem_uri_formatter [881/908] 1289334=test_assembler [882/908] 1289334=test_locale Closed file descriptor: TestGemPackage#test_raw_spec: 11 [883/908] 1289334=test_encodings [884/908] 1289333=test_rdoc_require [885/908] 1289333=test_path [886/908] 1289333=test_ts [887/908] 1289333=test_normalize [888/908] 1289333=test_range [889/908] 1289335=test_inputs_scanner [890/908] 1289335=test_rdoc_markup_include [891/908] 1289335=test_numeric [892/908] 1289335=test_basicinstructions [893/908] 1289335=test_udp [894/908] 1289335=test_convert [895/908] 1289335=test_files_lib [896/908] 1289335=test_key_actor_emacs [897/908] 1289335=test_io_buffer [898/908] 1289333=test_benchmark [899/908] 1289335=test_hmac [900/908] 1289335=test_lazy_enumerator [901/908] 1289335=test_rdoc_rdoc [902/908] 1289333=test_data_error [903/908] 1289333=test_mdns [904/908] 1289333=test_gem_source [905/908] 1289335=test_find_executable [906/908] 1289335=test_strip [907/908] 1289335=test_optparse [908/908] 1289335=test_nonblock Finished tests in 541.653618s, 49.6517 tests/s, 18841.0963 assertions/s. 26894 tests, 10205348 assertions, 0 failures, 0 errors, 188 skips ruby -v: ruby 3.3.0dev (2023-11-18T10:38:55Z master c56dd94db0) [x86_64-linux] $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j4'" exit with 0. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j4' BASERUBY = /usr/bin/ruby --disable=gems CC = gcc LD = ld LDSHARED = gcc -shared CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wdeprecated-declarations -Wdiv-by-zero -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wwrite-strings -Wold-style-definition -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wmisleading-indentation -Wundef -fPIC XCFLAGS = -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fno-strict-overflow -fvisibility=hidden -fexcess-precision=standard -DRUBY_EXPORT -I. -I.ext/include/x86_64-linux -I/tmp/ruby/src/trunk-jemalloc/include -I/tmp/ruby/src/trunk-jemalloc -I/tmp/ruby/src/trunk-jemalloc/prism -I/tmp/ruby/src/trunk-jemalloc/enc/unicode/15.0.0 CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.3 -fstack-protector-strong SOLIBS = -lz -lrt -lrt -ljemalloc -lgmp -ldl -lcrypt -lm -lpthread LANG = LC_ALL = LC_CTYPE = MFLAGS = RUSTC = rustc YJIT_RUSTC_ARGS = --crate-name=yjit --crate-type=staticlib --edition=2021 -g -C lto=thin -C opt-level=3 -C overflow-checks=on '--out-dir=/tmp/ruby/build/trunk-jemalloc/yjit/target/release/' /tmp/ruby/src/trunk-jemalloc/yjit/src/lib.rs gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 Copyright (C) 2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. generating enc.mk generating encdb.h encdb.h unchanged making enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for '/tmp/ruby/src/trunk-jemalloc/enc/trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' making encs make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/debug-1.8.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/racc-1.7.3/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.2.2/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc/.bundle/gems/rbs-3.3.0/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Entering directory '/tmp/ruby/build/trunk-jemalloc' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk-jemalloc' $ /tmp/ruby/build/trunk-jemalloc/miniruby -I/tmp/ruby/src/trunk-jemalloc/lib /tmp/ruby/src/trunk-jemalloc/tool/runruby.rb --archdir=/tmp/ruby/build/trunk-jemalloc --extout=.ext -- /tmp/ruby/src/trunk-jemalloc/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk-jemalloc/spec/default.mspec --error-output stderr --debug ruby 3.3.0dev (2023-11-18T10:38:55Z master c56dd94db0) [x86_64-linux] 0 ......................................................................... 73 ......................................................................... 146 ......................................................................... 219 ......................................................................... 292 ......................................................................... 365 ......................................................................... 438 ......................................................................... 511 ......................................................................... 584 ......................................................................... 657 ......................................................................... 730 ......................................................................... 803 ......................................................................... 876 ......................................................................... 949 ......................................................................... 1022 ......................................................................... 1095 ......................................................................... 1168 ......................................................................... 1241 ......................................................................... 1314 ......................................................................... 1387 ......................................................................... 1460 ......................................................................... 1533 ......................................................................... 1606 ......................................................................... 1679 ......................................................................... 1752 ......................................................................... 1825 ......................................................................... 1898 ......................................................................... 1971 ......................................................................... 2044 ......................................................................... 2117 ......................................................................... 2190 ......................................................................... 2263 ......................................................................... 2336 ......................................................................... 2409 ......................................................................... 2482 ......................................................................... 2555 ......................................................................... 2628 ......................................................................... 2701 ......................................................................... 2774 ......................................................................... 2847 ......................................................................... 2920 ......................................................................... 2993 ......................................................................... 3066 ......................................................................... 3139 ......................................................................... 3212 ......................................................................... 3285 ......................................................................... 3358 ......................................................................... 3431 ......................................................................... 3504 ......................................................................... 3577 ......................................................................... 3650 ......................................................................... 3723 .. Finished in 187.112742 seconds 3725 files, 32456 examples, 155707 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr --debug' TESTS='-j4'" exit with 0.