# Logfile created on 2025-01-12 00:23:03 +0000 by logger.rb/v1.5.0 #<BuildRuby:0x0000003fd0c04a08 @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", @TARGET_SRC_DIR="/tmp/ruby/src/trunk", @TARGET_BUILD_DIR="/tmp/ruby/build/trunk", @TARGET_INSTALL_DIR="/tmp/ruby/install/trunk", @configure_opts=["--enable-shared"], @build_opts="-j4", @btest_opts="-j4", @test_opts="TESTS='-j4'", @spec_opts="-j", @incremental=true, @steps=["checkout", "autoconf", "configure", "build_up", "build_miniruby", "build_ruby", "build_all", "build_install", "test_btest", "test_basic", "test_all", "test_rubyspec"], @quiet=false, @gist=false, @timeout=10800, @no_timeout_error=nil, @logfile="/home/sipeed/ruby/logs/brlog.trunk.20250112-002302", @ruby_env=[["RUBY_DEBUG", "ci"]], @make="make", @logger=#<Logger:0x0000003fd0be2b60 @level=0, @progname=nil, @default_formatter=#<Logger::Formatter:0x0000003fd0be2a20 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0000003fd0be2890 @shift_period_suffix="%Y%m%d", @shift_size=1048576, @shift_age=0, @filename="/home/sipeed/ruby/logs/brlog.trunk.20250112-002302", @dev=#<File:/home/sipeed/ruby/logs/brlog.trunk.20250112-002302>, @binmode=false, @mon_data=#<Monitor:0x0000003fd0be2750>, @mon_data_owner_object_id=880>>> $$$[beg] make update-download -j4 tool/config.guess already exists tool/config.sub already exists Update pstore to b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f echo b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f | /bin/sh /tmp/ruby/src/trunk/tool/ifchange /tmp/ruby/src/trunk/.bundle/.timestamp/pstore.revision - /tmp/ruby/src/trunk/.bundle/.timestamp/pstore.revision unchanged $$$[end] "make update-download -j4" exit with 0. $$$[beg] make update-src -j4 From https://github.com/ruby/ruby 76b620b..8e56d9e master -> origin/master Updating 76b620b..8e56d9e Fast-forward NEWS.md | 1 + lib/prism/ffi.rb | 2 + lib/prism/prism.gemspec | 2 +- lib/prism/translation/parser/compiler.rb | 218 ++++++------- lib/prism/translation/parser/lexer.rb | 358 ++++++++++++++++++--- lib/prism/translation/ripper.rb | 16 +- prism/defines.h | 14 + prism/extension.h | 2 +- prism/options.c | 10 + prism/options.h | 5 +- prism/prism.c | 58 ++-- prism/regexp.c | 5 +- prism/templates/lib/prism/serialize.rb.erb | 2 +- prism/version.h | 4 +- test/prism/api/parse_test.rb | 5 +- test/prism/errors/defs_endless_method.txt | 12 + test/prism/fixtures/dstring.txt | 9 + test/prism/fixtures/dsym_str.txt | 3 + test/prism/fixtures/lambda.txt | 4 + test/prism/fixtures/methods.txt | 2 + test/prism/fixtures/ranges.txt | 2 + test/prism/fixtures/regex.txt | 10 + test/prism/fixtures/strings.txt | 10 + test/prism/fixtures/symbols.txt | 11 + test/prism/fixtures/whitequark/LICENSE | 3 +- .../prism/fixtures/whitequark/arg_combinations.txt | 29 ++ .../fixtures/whitequark/block_arg_combinations.txt | 57 ++++ test/prism/fixtures/whitequark/block_kwarg.txt | 1 + .../whitequark/block_kwarg_combinations.txt | 5 + .../whitequark/emit_arg_inside_procarg0_legacy.txt | 1 + test/prism/fixtures/whitequark/find_pattern.txt | 7 + .../fixtures/whitequark/kwarg_combinations.txt | 7 + test/prism/fixtures/whitequark/kwarg_no_paren.txt | 5 + .../fixtures/whitequark/lvar_injecting_match.txt | 2 + .../fixtures/whitequark/marg_combinations.txt | 19 ++ .../multiple_args_with_trailing_comma.txt | 1 + .../whitequark/pattern_matching_const_pattern.txt | 11 + .../whitequark/pattern_matching_constants.txt | 5 + .../pattern_matching_explicit_array_match.txt | 19 ++ .../whitequark/pattern_matching_expr_in_paren.txt | 1 + .../fixtures/whitequark/pattern_matching_hash.txt | 48 +++ .../pattern_matching_if_unless_modifiers.txt | 3 + .../pattern_matching_implicit_array_match.txt | 15 + .../pattern_matching_keyword_variable.txt | 1 + .../whitequark/pattern_matching_lambda.txt | 1 + .../whitequark/pattern_matching_match_alt.txt | 1 + .../whitequark/pattern_matching_match_as.txt | 1 + .../whitequark/pattern_matching_nil_pattern.txt | 1 + .../whitequark/pattern_matching_no_body.txt | 1 + .../whitequark/pattern_matching_ranges.txt | 11 + .../whitequark/pattern_matching_single_match.txt | 1 + test/prism/fixtures/whitequark/pin_expr.txt | 14 + test/prism/fixtures/whitequark/procarg0_legacy.txt | 1 + test/prism/fixtures/whitequark/ruby_bug_18878.txt | 1 + test/prism/fixtures/whitequark/ruby_bug_19281.txt | 7 + test/prism/fixtures/whitequark/ruby_bug_19539.txt | 9 + test/prism/fixtures/xstring.txt | 8 + test/prism/fixtures_test.rb | 21 +- test/prism/lex_test.rb | 8 + test/prism/ruby/parser_test.rb | 59 +--- test/prism/ruby/ripper_test.rb | 1 + test/prism/ruby/ruby_parser_test.rb | 6 + 62 files changed, 882 insertions(+), 275 deletions(-) create mode 100644 test/prism/errors/defs_endless_method.txt create mode 100644 test/prism/fixtures/whitequark/arg_combinations.txt create mode 100644 test/prism/fixtures/whitequark/block_arg_combinations.txt create mode 100644 test/prism/fixtures/whitequark/block_kwarg.txt create mode 100644 test/prism/fixtures/whitequark/block_kwarg_combinations.txt create mode 100644 test/prism/fixtures/whitequark/emit_arg_inside_procarg0_legacy.txt create mode 100644 test/prism/fixtures/whitequark/find_pattern.txt create mode 100644 test/prism/fixtures/whitequark/kwarg_combinations.txt create mode 100644 test/prism/fixtures/whitequark/kwarg_no_paren.txt create mode 100644 test/prism/fixtures/whitequark/marg_combinations.txt create mode 100644 test/prism/fixtures/whitequark/multiple_args_with_trailing_comma.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_const_pattern.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_constants.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_explicit_array_match.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_expr_in_paren.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_hash.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_if_unless_modifiers.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_implicit_array_match.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_keyword_variable.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_lambda.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_match_alt.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_match_as.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_nil_pattern.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_no_body.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_ranges.txt create mode 100644 test/prism/fixtures/whitequark/pattern_matching_single_match.txt create mode 100644 test/prism/fixtures/whitequark/pin_expr.txt create mode 100644 test/prism/fixtures/whitequark/procarg0_legacy.txt create mode 100644 test/prism/fixtures/whitequark/ruby_bug_18878.txt create mode 100644 test/prism/fixtures/whitequark/ruby_bug_19281.txt create mode 100644 test/prism/fixtures/whitequark/ruby_bug_19539.txt Latest commit hash = 8e56d9e415 $$$[end] "make update-src -j4" exit with 0. $$$[beg] make after-update -j4 /tmp/ruby/src/trunk/revision.h updated generating riscv64-linux-fake.rb riscv64-linux-fake.rb updated generating enc.mk making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' Update pstore to b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f echo b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f | /bin/sh /tmp/ruby/src/trunk/tool/ifchange /tmp/ruby/src/trunk/.bundle/.timestamp/pstore.revision - /tmp/ruby/src/trunk/.bundle/.timestamp/pstore.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 = -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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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/miniinit.c compiling /tmp/ruby/src/trunk/ast.c compiling /tmp/ruby/src/trunk/compile.c compiling /tmp/ruby/src/trunk/cont.c compiling /tmp/ruby/src/trunk/eval.c compiling /tmp/ruby/src/trunk/gc.c compiling /tmp/ruby/src/trunk/hash.c compiling /tmp/ruby/src/trunk/iseq.c compiling /tmp/ruby/src/trunk/load.c compiling /tmp/ruby/src/trunk/rjit.c compiling /tmp/ruby/src/trunk/rjit_c.c compiling /tmp/ruby/src/trunk/proc.c compiling /tmp/ruby/src/trunk/ruby.c compiling /tmp/ruby/src/trunk/thread.c compiling /tmp/ruby/src/trunk/version.c /tmp/ruby/src/trunk/thread.c: In function ‘rb_gc_set_stack_end’: /tmp/ruby/src/trunk/thread.c:4581:18: warning: storing the address of local variable ‘stack_end’ in ‘*stack_end_p’ [-Wdangling-pointer=] 4581 | *stack_end_p = &stack_end; | ~~~~~~~~~~~~~^~~~~~~~~~~~ /tmp/ruby/src/trunk/thread.c:4576:11: note: ‘stack_end’ declared here 4576 | VALUE stack_end; | ^~~~~~~~~ /tmp/ruby/src/trunk/thread.c:4574:29: note: ‘stack_end_p’ declared here 4574 | rb_gc_set_stack_end(VALUE **stack_end_p) | ~~~~~~~~^~~~~~~~~~~ compiling /tmp/ruby/src/trunk/vm.c compiling /tmp/ruby/src/trunk/vm_backtrace.c compiling /tmp/ruby/src/trunk/vm_dump.c compiling /tmp/ruby/src/trunk/vm_trace.c compiling prism/api_node.c 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/prism/api_pack.c compiling prism/diagnostic.c compiling /tmp/ruby/src/trunk/prism/encoding.c compiling /tmp/ruby/src/trunk/prism/extension.c compiling prism/node.c compiling /tmp/ruby/src/trunk/prism/options.c compiling /tmp/ruby/src/trunk/prism/pack.c compiling prism/prettyprint.c compiling /tmp/ruby/src/trunk/prism/regexp.c compiling prism/serialize.c compiling /tmp/ruby/src/trunk/prism/static_literals.c compiling prism/token_type.c compiling /tmp/ruby/src/trunk/prism/util/pm_buffer.c compiling /tmp/ruby/src/trunk/prism/util/pm_char.c compiling /tmp/ruby/src/trunk/prism/util/pm_constant_pool.c compiling /tmp/ruby/src/trunk/prism/util/pm_integer.c compiling /tmp/ruby/src/trunk/prism/util/pm_list.c compiling /tmp/ruby/src/trunk/prism/util/pm_memchr.c compiling /tmp/ruby/src/trunk/prism/util/pm_newline_list.c compiling /tmp/ruby/src/trunk/prism/util/pm_string.c compiling /tmp/ruby/src/trunk/prism/util/pm_strncasecmp.c compiling /tmp/ruby/src/trunk/prism/util/pm_strpbrk.c compiling /tmp/ruby/src/trunk/prism/prism.c compiling /tmp/ruby/src/trunk/prism_init.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 = -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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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 dabe3b7db9666f72746ef03309847e0887a25e6c28e350dcb8cf4cd93a800a4a builtin_binary.inc compiling /tmp/ruby/src/trunk/builtin.c linking static-library libruby-static.a linking shared-library libruby.so.3.5.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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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 building spec/ruby/optional/capi/ext/array_spec.so building spec/ruby/optional/capi/ext/basic_object_spec.so building spec/ruby/optional/capi/ext/bignum_spec.so building spec/ruby/optional/capi/ext/binding_spec.so building spec/ruby/optional/capi/ext/boolean_spec.so building spec/ruby/optional/capi/ext/class_id_under_autoload_spec.so building spec/ruby/optional/capi/ext/class_spec.so building spec/ruby/optional/capi/ext/class_under_autoload_spec.so building spec/ruby/optional/capi/ext/complex_spec.so building spec/ruby/optional/capi/ext/constants_spec.so building spec/ruby/optional/capi/ext/data_spec.so building spec/ruby/optional/capi/ext/debug_spec.so building spec/ruby/optional/capi/ext/encoding_spec.so building spec/ruby/optional/capi/ext/enumerator_spec.so building spec/ruby/optional/capi/ext/exception_spec.so building spec/ruby/optional/capi/ext/fiber_spec.so building spec/ruby/optional/capi/ext/file_spec.so building spec/ruby/optional/capi/ext/fixnum_spec.so building spec/ruby/optional/capi/ext/float_spec.so building spec/ruby/optional/capi/ext/gc_spec.so building spec/ruby/optional/capi/ext/globals_spec.so building spec/ruby/optional/capi/ext/hash_spec.so building spec/ruby/optional/capi/ext/integer_spec.so building spec/ruby/optional/capi/ext/io_spec.so building spec/ruby/optional/capi/ext/kernel_spec.so building spec/ruby/optional/capi/ext/language_spec.so building spec/ruby/optional/capi/ext/marshal_spec.so building spec/ruby/optional/capi/ext/module_spec.so building spec/ruby/optional/capi/ext/module_under_autoload_spec.so building spec/ruby/optional/capi/ext/mutex_spec.so building spec/ruby/optional/capi/ext/numeric_spec.so building spec/ruby/optional/capi/ext/object_spec.so building spec/ruby/optional/capi/ext/proc_spec.so building spec/ruby/optional/capi/ext/range_spec.so building spec/ruby/optional/capi/ext/rational_spec.so building spec/ruby/optional/capi/ext/rbasic_spec.so building spec/ruby/optional/capi/ext/regexp_spec.so building spec/ruby/optional/capi/ext/st_spec.so building spec/ruby/optional/capi/ext/string_spec.so building spec/ruby/optional/capi/ext/struct_spec.so building spec/ruby/optional/capi/ext/symbol_spec.so building spec/ruby/optional/capi/ext/thread_spec.so building spec/ruby/optional/capi/ext/time_spec.so building spec/ruby/optional/capi/ext/tracepoint_spec.so building spec/ruby/optional/capi/ext/typed_data_spec.so building spec/ruby/optional/capi/ext/util_spec.so making enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' 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' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making encs make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk' linking ruby make[2]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk' $$$[end] "make all -j4" exit with 0. $$$[beg] make install -j4 Update pstore to b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f 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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs echo b563c4d354615e12a6fa54ffaa4ed711c3d1ba9f | /bin/sh /tmp/ruby/src/trunk/tool/ifchange /tmp/ruby/src/trunk/.bundle/.timestamp/pstore.revision - generating enc.mk gcc (Debian 13.2.0-23revyos1) 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/.bundle/.timestamp/pstore.revision unchanged making srcs under enc making enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' generating transdb.h transdb.h unchanged generating makefiles ext/configure-ext.mk making trans ext/configure-ext.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making encs make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk' ./miniruby -I/tmp/ruby/src/trunk/lib -I. -I.ext/common /tmp/ruby/src/trunk/tool/runruby.rb --extout=.ext -- --disable-gems -r./riscv64-linux-fake /tmp/ruby/src/trunk/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="doc" --gnumake --install=all --exclude=doc installing binary commands: /tmp/ruby/install/trunk/bin installing base libraries: /tmp/ruby/install/trunk/lib installing arch files: /tmp/ruby/install/trunk/lib/ruby/3.5.0+0/riscv64-linux installing pkgconfig data: /tmp/ruby/install/trunk/lib/pkgconfig installing extension objects: /tmp/ruby/install/trunk/lib/ruby/3.5.0+0/riscv64-linux installing extension objects: /tmp/ruby/install/trunk/lib/ruby/site_ruby/3.5.0+0/riscv64-linux installing extension objects: /tmp/ruby/install/trunk/lib/ruby/vendor_ruby/3.5.0+0/riscv64-linux installing extension headers: /tmp/ruby/install/trunk/include/ruby-3.5.0+0/riscv64-linux installing extension scripts: /tmp/ruby/install/trunk/lib/ruby/3.5.0+0 installing extension scripts: /tmp/ruby/install/trunk/lib/ruby/site_ruby/3.5.0+0 installing extension scripts: /tmp/ruby/install/trunk/lib/ruby/vendor_ruby/3.5.0+0 installing extension headers: /tmp/ruby/install/trunk/include/ruby-3.5.0+0/ruby installing command scripts: /tmp/ruby/install/trunk/bin installing library scripts: /tmp/ruby/install/trunk/lib/ruby/3.5.0+0 installing common headers: /tmp/ruby/install/trunk/include/ruby-3.5.0+0 installing manpages: /tmp/ruby/install/trunk/share/man/man1 installing default gems from lib: /tmp/ruby/install/trunk/lib/ruby/gems/3.5.0+0 bundler 2.7.0.dev cgi 0.4.1 delegate 0.4.0 did_you_mean 2.0.0 english 0.8.0 erb 4.0.4 error_highlight 0.7.0 fileutils 1.7.3 find 0.2.0 forwardable 1.3.3 ipaddr 1.2.7 irb 1.14.3 net-http 0.6.0 net-protocol 0.2.2 open-uri 0.5.0 open3 0.2.1 optparse 0.6.0 pp 0.6.2 prettyprint 0.2.0 prism 1.3.0 rdoc 6.10.0 readline 0.0.4 reline 0.6.0 resolv 0.6.0 ruby2_keywords 0.0.5 securerandom 0.4.1 set 1.1.1 shellwords 0.2.2 singleton 0.3.0 syntax_suggest 2.0.2 tempfile 0.3.1 time 0.4.1 timeout 0.4.3 tmpdir 0.3.1 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/lib/ruby/gems/3.5.0+0 date 3.4.1 digest 3.2.0 etc 1.4.5 fcntl 1.2.0 fiddle 1.1.7.dev io-console 0.8.0 io-nonblock 0.3.1 io-wait 0.3.1 json 2.9.1 openssl 3.3.0 pathname 0.4.0 psych 5.2.2 stringio 3.1.3.dev strscan 3.1.2 zlib 3.2.1 installing bundled gems: /tmp/ruby/install/trunk/lib/ruby/gems/3.5.0+0 minitest 5.25.4 power_assert 2.0.5 rake 13.2.1 test-unit 3.6.7 rexml 3.4.0 rss 0.3.1 net-ftp 0.3.8 net-imap 0.5.5 net-pop 0.1.2 net-smtp 0.5.0 matrix 0.4.2 prime 0.1.3 rbs 3.8.1 typeprof 0.30.1 debug 1.10.0 racc 1.8.1 mutex_m 0.3.0 getoptlong 0.2.1 base64 0.2.0 bigdecimal 3.1.9 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.2.0 csv 3.3.2 repl_type_completor 0.1.9 ostruct 0.6.1 pstore 0.1.4 benchmark 0.4.0 logger 1.6.5 installing bundled gem cache: /tmp/ruby/install/trunk/lib/ruby/gems/3.5.0+0/cache $$$[end] "make install -j4" exit with 0. $$$[beg] make yes-btest TESTOPTS='-q -j4' PASS all 2005 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 = -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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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/basictest/test.rb:assignment ....................................................................................................................................................................................................................................................................................................................................................................................OK 372 /tmp/ruby/src/trunk/basictest/test.rb:condition ..OK 2 /tmp/ruby/src/trunk/basictest/test.rb:if/unless ...OK 3 /tmp/ruby/src/trunk/basictest/test.rb:case .....OK 5 /tmp/ruby/src/trunk/basictest/test.rb:while/until ........OK 8 /tmp/ruby/src/trunk/basictest/test.rb:exception ..........OK 10 /tmp/ruby/src/trunk/basictest/test.rb:array .......................................OK 39 /tmp/ruby/src/trunk/basictest/test.rb:hash ...........................OK 27 /tmp/ruby/src/trunk/basictest/test.rb:iterator ...........................................................................................................OK 107 /tmp/ruby/src/trunk/basictest/test.rb:float ................................................................................OK 80 /tmp/ruby/src/trunk/basictest/test.rb:bignum ...............................OK 31 /tmp/ruby/src/trunk/basictest/test.rb:string & char ..............................................................OK 62 /tmp/ruby/src/trunk/basictest/test.rb:assignment ..........OK 10 /tmp/ruby/src/trunk/basictest/test.rb:call ......OK 6 /tmp/ruby/src/trunk/basictest/test.rb:proc .........OK 9 /tmp/ruby/src/trunk/basictest/test.rb:signal ..OK 2 /tmp/ruby/src/trunk/basictest/test.rb:eval ...........................OK 27 /tmp/ruby/src/trunk/basictest/test.rb:system ........OK 8 /tmp/ruby/src/trunk/basictest/test.rb:const .....OK 5 /tmp/ruby/src/trunk/basictest/test.rb:clone .....OK 5 /tmp/ruby/src/trunk/basictest/test.rb:marshal ....OK 4 /tmp/ruby/src/trunk/basictest/test.rb:pack ....OK 4 /tmp/ruby/src/trunk/basictest/test.rb:math ..OK 2 /tmp/ruby/src/trunk/basictest/test.rb:struct ......OK 6 /tmp/ruby/src/trunk/basictest/test.rb:variable ............OK 12 /tmp/ruby/src/trunk/basictest/test.rb:trace ...OK 3 /tmp/ruby/src/trunk/basictest/test.rb:defined? ............OK 12 /tmp/ruby/src/trunk/basictest/test.rb:alias ......OK 6 /tmp/ruby/src/trunk/basictest/test.rb:path .......................OK 23 /tmp/ruby/src/trunk/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 = -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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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 making enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making encs make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk' Run options: --seed=64912 "--ruby=./miniruby -I/tmp/ruby/src/trunk/lib -I. -I.ext/common /tmp/ruby/src/trunk/tool/runruby.rb --extout=.ext -- --disable-gems" --excludes-dir=/tmp/ruby/src/trunk/test/.excludes --name=!/memory_leak/ --stderr-on-failure -j4 # Running tests: [ 1/910] 459253=test_ractor [ 2/910] 459254=test_memory_view [ 3/910] 459256=test_m17n_comb [ 4/910] 459255=test_rdoc_markup_to_markdown [ 5/910] 459254=test_json_tree [ 6/910] 459253=test_rdoc_generator_pot_po [ 7/910] 459254=test_parser_events [ 8/910] 459253=test_reline [ 9/910] 459255=test_case [ 10/910] 459254=test_pkey [ 11/910] 459255=test_gem_request_connection_pools [ 12/910] 459254=test_grapheme_breaks [ 13/910] 459254=test_gem_version_option [ 14/910] 459254=test_cclass [ 15/910] 459255=test_str2big [ 16/910] 459254=test_dot_dot [ 17/910] 459254=test_c_struct_builder [ 18/910] 459255=test_literal [ 19/910] 459254=test_thread [ 20/910] 459254=test_gem_remote_fetcher_s3 [ 21/910] 459254=test_socket [ 22/910] 459253=test_objectspace [ 23/910] 459255=location_test [ 24/910] 459255=test_rdoc_markup_to_table_of_contents [ 25/910] 459255=test_require_lib [ 26/910] 459254=test_gem_install_update_options [ 27/910] 459254=test_ractor [ 28/910] 459254=test_gem_stream_ui [ 29/910] 459254=test_rdoc_generator_ri [ 30/910] 459254=test_extlibs [ 31/910] 459256=test_exception [ 32/910] 459254=test_rand [ 33/910] 459254=test_gem_package_tar_reader_entry [ 34/910] 459255=test_gem_name_tuple [ 35/910] 459255=test_bug_reporter [ 36/910] 459254=test_gem_dependency_installer [ 37/910] 459255=test_scalar [ 38/910] 459255=test_gem_commands_info_command [ 39/910] 459255=parameters_signature_test [ 40/910] 459255=test_rdoc_cross_reference [ 41/910] 459256=test_store [ 42/910] 459256=test_case_options [ 43/910] 459256=test_scan_args [ 44/910] 459256=test_win32ole [ 45/910] 459256=test_generic [ 46/910] 459256=test_gem_text [ 47/910] 459256=test_settracefunc [ 48/910] 459255=tunnel_test [ 49/910] 459255=test_enumerator_kw [ 50/910] 459255=test_gem_commands_mirror [ 51/910] 459255=test_gem_ext_cargo_builder_link_flag_converter [ 52/910] 459255=test_sprintf_comb [ 53/910] 459255=test_method_cache [ 54/910] 459255=test_gem_request [ 55/910] 459256=test_gem_resolver_composed_set [ 56/910] 459256=test_safe_load [ 57/910] 459253=test_gem_resolver [ 58/910] 459256=test_gem_commands_dependency_command [ 59/910] 459256=test_rdoc_markup_attribute_manager [ 60/910] 459255=test_name_error [ 61/910] 459255=test_enumerator [ 62/910] 459256=test_flags [ 63/910] 459253=test_inadvertent_creation [ 64/910] 459253=test_gem_commands_which_command [ 65/910] 459253=test_shift_jis [ 66/910] 459253=test_http [ 67/910] 459253=reflection_test [ 68/910] 459253=test_gem_commands_specification_command [ 69/910] 459253=test_rdoc_text [ 70/910] 459253=test_iso_8859 [ 71/910] 459253=test_tcp [ 72/910] 459253=test_data [ 73/910] 459253=test_date_new [ 74/910] 459253=test_require [ 75/910] 459253=test_date_time [ 76/910] 459253=test_rdoc_markup_to_joined_paragraph [ 77/910] 459253=test_gem_safe_yaml [ 78/910] 459253=test_syntax [ 79/910] 459254=test_rdoc_parser_ruby [ 80/910] 459256=test_open-uri [ 81/910] 459256=test_httpresponse [ 82/910] 459256=test_stream [ 83/910] 459256=test_nil2vtempty [ 84/910] 459256=test_rdoc_context [ 85/910] 459254=test_hash_create [ 86/910] 459254=test_stringchar [ 87/910] 459254=test_ansi [ 88/910] 459254=test_uncorrectable_name_check [ 89/910] 459254=newline_test [ 90/910] 459254=test_thread_fd_close [ 91/910] 459254=test_passing_block [ 92/910] 459254=test_rdoc_markdown_test [ 93/910] 459256=test_c_union_entity [ 94/910] 459256=test_rdoc_normal_module [ 95/910] 459256=test_securerandom [ 96/910] 459256=test_switch_hitter [ 97/910] 459256=test_flush [ 98/910] 459256=test_singleton [ 99/910] 459256=test_io_console [100/910] 459254=test_arity [101/910] 459256=test_gem_ext_rake_builder [102/910] 459254=test_gc [103/910] 459256=test_x509cert [104/910] 459256=test_err_in_callback [105/910] 459256=test_gem_resolver_lock_specification [106/910] 459256=test_pack [107/910] 459256=command_line_test [108/910] 459256=test_last_thread [109/910] 459256=test_process [110/910] 459253=test_gem_source_local [111/910] 459253=test_gem_security_policy [112/910] 459253=test_assignment [113/910] 459255=test_ifunless [114/910] 459255=test_gem_commands_lock_command [115/910] 459255=parse_stream_test [116/910] 459255=test_numeric [117/910] 459255=test_common [118/910] 459255=test_gem_spec_fetcher [119/910] 459255=test_gem_command [120/910] 459255=test_key_actor_vi [121/910] 459255=test_bug-3571 [122/910] 459255=test_hmac [123/910] 459255=test_rdoc_markup_to_tt_only [124/910] 459255=test_rdoc_tom_doc [125/910] 459255=test_macro [126/910] 459255=test_frozen [127/910] 459255=test_gem_ext_configure_builder [128/910] 459255=test_pp [129/910] 459255=test_gem_remote_fetcher_local_server [130/910] 459255=test_verbose [131/910] 459255=test_num2int [132/910] 459255=test_nil [133/910] 459255=test_rdoc_single_class [134/910] 459255=test_zsh_completion [135/910] 459255=test_exception [136/910] 459255=test_iter_break [137/910] 459255=test_address_resolve [138/910] 459255=test_rdoc_token_stream [139/910] 459255=test_config [140/910] 459255=test_yaml_special_cases [141/910] 459255=test_optarg [142/910] 459255=test_gem_source_list [143/910] 459255=test_kdf [144/910] 459255=test_gem_doctor [145/910] 459255=test_eval_history [146/910] 459255=test_kernel [147/910] 459253=test_bug-5832 [148/910] 459253=test_files_ext [149/910] 459255=static_inspect_test [150/910] 459255=test_gem_silent_ui [151/910] 459255=test_emitter [152/910] 459255=test_object_create_start [153/910] 459255=test_at_exit [154/910] 459255=test_command [155/910] 459253=parse_success_test [156/910] 459253=test_gem_ext_cargo_builder_unit [157/910] 459253=test_gem_rdoc [158/910] 459253=test_date [159/910] 459253=snippets_test [160/910] 459255=test_rdoc_markup_paragraph [161/910] 459255=test_enc_raise [162/910] 459255=test_psych [163/910] 459255=!Nothing_to_test [164/910] 459255=test_date_parse [165/910] 459255=test_pkey_ec [166/910] 459255=integer_base_flags_test [167/910] 459255=test_trick [168/910] 459254=test_thread [169/910] 459254=test_pipe [170/910] 459254=test_rdoc_markup_to_rdoc [171/910] 459254=test_rdoc_rd_inline_parser [172/910] 459254=test_default_gems [173/910] 459254=test_null [174/910] 459254=test_win32ole_type [175/910] 459254=newline_offsets_test [176/910] 459253=test_mul [177/910] 459253=test_rdoc_markup_attributes [178/910] 459253=compiler_test [179/910] 459253=test_rdoc_rdoc [180/910] 459254=test_windows_1251 [181/910] 459254=test_time [182/910] 459253=relocation_test [183/910] 459253=test_buffering [184/910] 459253=test_svcb_https [185/910] 459253=test_gb18030 [186/910] 459253=test_gem_uninstaller [187/910] 459254=test_disable_irb [188/910] 459254=test_rdoc_i18n_text [189/910] 459254=test_io_buffer [190/910] 459254=test_key_name_check [191/910] 459254=test_defined [192/910] 459254=test_backtrace [193/910] 459254=test_gem_validator [194/910] 459254=test_fnmatch [195/910] 459254=test_files_test_2 [196/910] 459255=test_rdoc_markup_parser [197/910] 459255=test_require_path_check [198/910] 459255=test_folderitem2_invokeverb [199/910] 459255=test_erb_m17n [200/910] 459255=test_ole_methods [201/910] 459255=test_date_conv [202/910] 459255=test_optimization [203/910] 459253=test_zlib [204/910] 459253=test_cgi_tag_helper [205/910] 459253=test_egrep_cpp [206/910] 459253=test_gem_resolver_index_set [207/910] 459253=test_gem_package_old [208/910] 459253=integer_parse_test [209/910] 459253=test_gc_compact [210/910] 459254=test_proc [211/910] 459255=test_string [212/910] 459254=test_custom_command [213/910] 459254=json_addition_test [214/910] 459254=test_gem_dependency_resolution_error [215/910] 459254=test_command_aliasing [216/910] 459254=test_rdoc_parser [217/910] 459254=test_qsort [218/910] 459254=test_string [219/910] 459254=test_rdoc_stats [220/910] 459254=test_pattern_matching [221/910] 459254=test_depth_first [222/910] 459254=test_gem_request_set_lockfile_parser [223/910] 459254=test_raise [224/910] 459254=test_x509attr [225/910] 459254=test_rdoc_store [226/910] 459253=test_ensure_and_callcc [227/910] 459253=test_rdoc_require [228/910] 459253=locals_test [229/910] 459253=test_ractor [230/910] 459253=test_readpartial [231/910] 459253=test_clone [232/910] 459253=test_gem_commands_install_command [233/910] 459256=test_gem_resolver_conflict [234/910] 459256=regular_expression_options_test [235/910] 459256=test_rdoc_task [236/910] 459256=test_backtrace [237/910] 459254=test_pack [238/910] 459254=test_io_buffer [239/910] 459254=test_rdoc_markup_indented_paragraph [240/910] 459254=test_stringscanner [241/910] 459254=test_files_sample [242/910] 459254=test_rdoc_alias [243/910] 459254=test_yield [244/910] 459256=test_convertible [245/910] 459253=test_optparse [246/910] 459253=test_array [247/910] 459253=test_fstring [248/910] 459253=test_rdoc_markup_to_html_crossref [249/910] 459253=test_gem_resolver_best_set [250/910] 459253=test_typeddata [251/910] 459253=test_rat [252/910] 459253=test_rdoc_markup_raw [253/910] 459253=test_webauthn_poller [254/910] 459253=test_getopts [255/910] 459253=test_protocol [256/910] 459253=test_gem_resolver_activation_request [257/910] 459253=test_gem_config_file [258/910] 459253=test_ripper [259/910] 459253=test_etc [260/910] 459253=test_yjit_exit_locations [261/910] 459253=test_system [262/910] 459253=test_pkcs12 [263/910] 459254=source_location_test [264/910] 459254=test_gem_package_tar_header [265/910] 459254=test_gem_util [266/910] 459253=test_iseq_load [267/910] 459254=test_pkey_dh [268/910] 459254=test_bigzero [269/910] 459254=test_io [270/910] 459253=test_unicode_escape [271/910] 459253=test_utf16 [272/910] 459253=test_autoload [273/910] 459256=numeric_value_test [274/910] 459256=test_rendering [275/910] 459256=test_sizeof [276/910] 459253=test_case [277/910] 459253=test_face [278/910] 459253=test_yaml_tree [279/910] 459253=test_sleep [280/910] 459253=test_config [281/910] 459253=test_libs [282/910] 459253=test_math [283/910] 459253=test_gem_commands_fetch_command [284/910] 459253=test_gc [285/910] 459253=test_sorted_set [286/910] 459253=test_win32ole_type_event [287/910] 459253=test_emoji [288/910] 459253=test_ubf_async_safe [289/910] 459253=test_hash [290/910] 459255=test_io [291/910] 459255=test_cp949 [292/910] 459255=test_gem_commands_uninstall_command [293/910] 459256=test_gem_source_specific_file [294/910] 459254=test_foreach [295/910] 459256=test_condition [296/910] 459256=test_gem_unsatisfiable_dependency_error [297/910] 459254=test_win32ole_record [298/910] 459254=test_type_completor [299/910] 459254=test_console_attr [300/910] 459256=test_summary [301/910] 459254=test_ellipsize [302/910] 459254=test_date_attr [303/910] 459254=test_io_wait [304/910] 459254=test_gem_commands_exec_command [305/910] 459256=test_kwargs [306/910] 459256=test_ftp [307/910] 459256=test_rdoc_context_section [308/910] 459256=test_euc_kr [309/910] 459256=test_gem_commands_query_command [310/910] 459255=test_method [311/910] 459256=test_rdoc_rubygems_hook [312/910] 459256=test_pattern_key_name_check [313/910] 459256=test_to_ruby [314/910] 459256=test_gem_impossible_dependencies_error [315/910] 459256=test_array_create [316/910] 459256=test_pack [317/910] 459254=regular_expression_encoding_test [318/910] 459254=test_show_source [319/910] 459254=test_set [320/910] 459254=equality_test [321/910] 459254=test_lock_native_thread [322/910] 459256=test_c_struct_entry [323/910] 459254=test_gem_commands_stale_command [324/910] 459254=test_remote_fetch_error [325/910] 459254=test_have_library [326/910] 459256=test_line_editor [327/910] 459256=test_objspace [328/910] 459253=test_undef [329/910] 459253=test_string_memory [330/910] 459253=test_sprintf [331/910] 459254=test_gem_requirement [332/910] 459254=test_gem_security_trust_dir [333/910] 459254=test_ws [334/910] 459254=test_gem_commands_environment_command [335/910] 459254=test_m17n [336/910] 459253=test_workspace [337/910] 459253=test_weakmap [338/910] 459254=test_yjit [339/910] 459254=test_kill_ring [340/910] 459254=test_ns_spki [341/910] 459254=test_framework [342/910] 459254=test_argf [343/910] 459255=test_gem_request_set_lockfile [344/910] 459255=test_raise_exception [345/910] 459255=test_protect [346/910] 459255=test_win32ole_typelib [347/910] 459255=test_tree_builder [348/910] 459255=test_gem_resolver_dependency_request [349/910] 459255=test_hash [350/910] 459255=test_postponed_job [351/910] 459255=test_alias_and_anchor [352/910] 459255=test_external_new [353/910] 459255=encodings_test [354/910] 459255=test_string_processing [355/910] 459255=test_fileutils [356/910] 459255=test_ldap [357/910] 459255=test_emitter [358/910] 459255=test_resource [359/910] 459254=test_gem_commands_signin_command [360/910] 459255=test_gem_version [361/910] 459255=test_econv [362/910] 459254=test_cesu8 [363/910] 459254=test_rdoc_options [364/910] 459254=test_too_many_dummy_encodings [365/910] 459254=test_reqarg [366/910] 459253=test_rdoc_include [367/910] 459253=test_stack [368/910] 459254=test_gem_commands_list_command [369/910] 459254=test_scanner_events [370/910] 459254=test_gem_resolver_installed_specification [371/910] 459255=test_parse [372/910] 459254=test_mdns [373/910] 459254=test_gem_remote_fetcher [374/910] 459254=test_inlinecache [375/910] 459255=test_rdoc_markup_verbatim [376/910] 459255=lex_test [377/910] 459254=test_path_to_class [378/910] 459254=test_gem_resolver_specification [379/910] 459254=test_gem_dependency [380/910] 459254=test_gem_stub_specification [381/910] 459253=test_method_cache [382/910] 459253=test_frozen_error [383/910] 459253=test_gem_ext_ext_conf_builder [384/910] 459254=test_complex [385/910] 459254=test_gem_commands_search_command [386/910] 459254=test_irb [387/910] 459254=json_string_matching_test [388/910] 459254=test_load [389/910] 459254=test_class [390/910] 459255=test_rdoc_normal_class [391/910] 459255=test_const [392/910] 459255=test_asn1 [393/910] 459255=test_random [394/910] 459255=test_yamlstore [395/910] 459255=test_gem_installer [396/910] 459253=test_rdoc_parser_rd [397/910] 459253=test_date_strftime [398/910] 459253=symbol_encoding_test [399/910] 459253=test_internal_ivar [400/910] 459253=test_gem_resolver_index_specification [401/910] 459253=desugar_compiler_test [402/910] 459253=test_duplicate [403/910] 459253=test_utf32 [404/910] 459253=test_basicsocket [405/910] 459253=test_tracepoint [406/910] 459253=test_prettyprint [407/910] 459253=test_gem_commands_help_command [408/910] 459253=test_rdoc_markup [409/910] 459253=test_tempfile [410/910] 459253=pattern_test [411/910] 459253=test_noarg [412/910] 459253=test_function [413/910] 459256=test_queue [414/910] 459256=test_ractor [415/910] 459256=test_find [416/910] 459256=test_fiddle [417/910] 459256=test_wss [418/910] 459256=test_gem_commands_contents_command [419/910] 459253=test_gem_ext_cmake_builder [420/910] 459253=test_require [421/910] 459256=test_cgi_util [422/910] 459256=test_marshalable [423/910] 459256=test_digest [424/910] 459256=test_recorder [425/910] 459256=test_gem_source_vendor [426/910] 459256=test_gem_commands_owner_command [427/910] 459256=test_deprecate [428/910] 459256=test_rdoc_constant [429/910] 459256=test_bash_completion [430/910] 459256=test_rdoc_any_method [431/910] 459253=test_modify_expand [432/910] 459253=test_rdoc_markdown [433/910] 459253=test_gem_available_set [434/910] 459254=test_file [435/910] 459254=regexp_test [436/910] 459254=test_gem_package_tar_reader [437/910] 459256=test_rdoc_encoding [438/910] 459253=test_coverage [439/910] 459256=test_pathname [440/910] 459254=test_complexrational [441/910] 459254=test_init [442/910] 459256=test_ractor [443/910] 459256=test_euc_tw [444/910] 459256=test_bmethod [445/910] 459256=test_gem_commands_sources_command [446/910] 459254=test_thread_queue [447/910] 459256=test_nowrite [448/910] 459256=test_rdoc_markup_formatter [449/910] 459256=test_forwardable [450/910] 459256=test_yaml [451/910] 459255=test_wait [452/910] 459253=test_handle [453/910] 459255=test_big2str [454/910] 459255=test_warning [455/910] 459256=test_cstr [456/910] 459255=test_profile_frames [457/910] 459255=test_class2name [458/910] 459255=test_gbk [459/910] 459255=test_enc_str_buf_cat [460/910] 459255=test_comparable [461/910] 459255=test_rdoc_parser_c [462/910] 459253=index_write_test [463/910] 459253=test_io_timeout [464/910] 459253=test_shapes [465/910] 459253=json_fixtures_test [466/910] 459253=test_cparser [467/910] 459255=test_pkg_config [468/910] 459255=fuzzer_test [469/910] 459255=test_sexp [470/910] 459256=test_rdoc_markup_include [471/910] 459256=test_variable [472/910] 459255=test_struct [473/910] 459255=onigmo_test [474/910] 459255=magic_comment_test [475/910] 459254=test_rdoc_markup_to_html_snippet [476/910] 459256=test_gem_source_subpath_problem [477/910] 459254=test_dln [478/910] 459254=json_common_interface_test [479/910] 459256=test_win32ole_variant_outarg [480/910] 459256=test_config [481/910] 459254=named_capture_test [482/910] 459256=json_parser_test [483/910] 459254=test_nomethod_error [484/910] 459254=comments_test [485/910] 459254=test_set [486/910] 459256=test_struct [487/910] 459255=test_gem_path_support [488/910] 459254=test_files_test_1 [489/910] 459254=test_rdoc_rd_inline [490/910] 459254=test_mutex [491/910] 459253=test_x509req [492/910] 459255=test_key_error [493/910] 459255=test_allocation [494/910] 459254=test_div [495/910] 459254=test_win32ole_variant_m [496/910] 459254=test_engine [497/910] 459254=test_color_printer [498/910] 459254=test_deprecated [499/910] 459254=test_insns_leaf [500/910] 459254=test_serialize_subclasses [501/910] 459253=test_fixnum [502/910] 459254=test_signal [503/910] 459253=test_x509crl [504/910] 459253=dispatcher_test [505/910] 459253=test_rdoc_rd [506/910] 459253=test_cgi_session [507/910] 459253=test_rdoc_top_level [508/910] 459254=heredoc_test [509/910] 459254=test_metaclass [510/910] 459254=test_input_method [511/910] 459254=test_windows_1252 [512/910] 459254=test_process [513/910] 459254=test_float [514/910] 459253=test_cd [515/910] 459253=test_require [516/910] 459256=test_cgi_cookie [517/910] 459256=test_dir_m17n [518/910] 459254=test_gem_resolver_installer_set [519/910] 459254=warnings_test [520/910] 459254=test_regex_casefold [521/910] 459254=test_refinement [522/910] 459256=test_gem_commands_signout_command [523/910] 459256=test_gem_source_git [524/910] 459256=test_cipher [525/910] 459256=test_gem_security_signer [526/910] 459256=test_new [527/910] 459256=constant_path_node_test [528/910] 459256=test_gem_resolver_git_set [529/910] 459253=test_storage [530/910] 459253=test_iterator [531/910] 459253=test_string [532/910] 459253=test_omap [533/910] 459256=test_digest_extend [534/910] 459253=test_shellwords [535/910] 459253=test_debug [536/910] 459256=test_memory_view [537/910] 459253=test_rdoc_parser_simple [538/910] 459256=test_load [539/910] 459256=test_yamldbm [540/910] 459256=test_gem_commands_rebuild_command [541/910] 459253=test_abi [542/910] 459256=test_provider [543/910] 459253=test_evaluation [544/910] 459253=test_https [545/910] 459256=test_gem_ext_builder [546/910] 459255=test_win32ole_method_event [547/910] 459255=implicit_array_test [548/910] 459255=test_nesting_parser [549/910] 459255=test_gem_dependency_list [550/910] 459255=test_gem_commands_outdated_command [551/910] 459255=test_array [552/910] 459254=test_helper_method [553/910] 459254=test_gem_package_tar_writer [554/910] 459256=test_gem_source [555/910] 459253=test_scalar_scanner [556/910] 459254=fixtures_test [557/910] 459253=test_rational2 [558/910] 459253=test_rational [559/910] 459254=test_assembler [560/910] 459254=test_spell_checker [561/910] 459254=test_propertyputref [562/910] 459254=test_erb [563/910] 459256=test_x509ext [564/910] 459256=test_gem_source_installed [565/910] 459254=test_gem_commands_cert_command [566/910] 459256=test_completion [567/910] 459256=test_len [568/910] 459256=test_proxy [569/910] 459256=test_yield_block [570/910] 459256=test_parser [571/910] 459256=test_method_name_check [572/910] 459256=test_arith_seq_extract [573/910] 459253=test_ssl [574/910] 459256=test_gem_ext_cargo_builder [575/910] 459256=test_gem_request_set [576/910] 459256=test_module [577/910] 459254=test_boolean [578/910] 459254=test_stringify_symbols [579/910] 459254=test_instrumentation_api [580/910] 459256=test_monitor [581/910] 459256=test_buffered_io [582/910] 459256=test_configuration [583/910] 459256=test_rubyvm [584/910] 459256=test_rdoc_generator_markup [585/910] 459256=string_query_test [586/910] 459256=test_whileuntil [587/910] 459256=test_bn [588/910] 459254=test_win32ole_param_event [589/910] 459254=test_path [590/910] 459254=test_case_mapping [591/910] 459256=test_tree_spell_checker [592/910] 459254=test_http [593/910] 459256=test_addrinfo [594/910] 459256=test_bug-14834 [595/910] 459256=test_date_compat [596/910] 459256=test_rdoc_markup_to_html [597/910] 459256=test_compile_prism [598/910] 459256=test_rdoc_parser_prism_ruby Leaked file descriptor: TestNetHTTPKeepAlive#test_http_retry_success: 10 #<File::Stat dev=0x8, ino=2483317, mode=0140777, nlink=1, uid=1001, gid=1001, 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> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 459254 sipeed 10u IPv4 2483317 0t0 TCP localhost:38929->localhost:57204 (CLOSE_WAIT) [599/910] 459254=test_ssl_session [600/910] 459256=test_lexer [601/910] 459256=test_thread_cv [602/910] 459256=test_dbm [603/910] 459256=test_gem_resolver_vendor_specification [604/910] 459256=test_gem_commands_update_command [605/910] 459254=test_gem_uri [606/910] 459254=test_key_event_record [607/910] 459254=test_notimplement [608/910] 459254=test_random [609/910] 459254=test_rdoc_method_attr [610/910] 459254=test_filter [611/910] 459254=test_gem_gem_runner [612/910] 459254=test_data [613/910] 459254=test_rdoc_generator_pot [614/910] 459254=test_enumerator [615/910] 459254=test_rdoc_parser_changelog [616/910] 459255=test_koi8 [617/910] 459254=test_unicode [618/910] 459255=test_document [619/910] 459255=test_acceptable [620/910] 459256=test_rdoc_generator_pot_po_entry [621/910] 459256=test_euc_jp [622/910] 459254=test_pair [623/910] 459256=test_gem_commands_yank_command [624/910] 459255=test_win32ole_param [625/910] 459255=test_name_error_extension [626/910] 459255=test_bundled_gems [627/910] 459255=test_rdoc_i18n_locale [628/910] 459255=test_primitive [629/910] 459255=test_human_typo [630/910] 459255=test_rbconfig [631/910] 459255=test_key_stroke [632/910] 459255=json_encoding_test [633/910] 459255=test_color [634/910] 459256=test_gem_resolver_local_specification [635/910] 459256=test_httpheader [636/910] 459255=test_rdoc_ri_driver [637/910] 459256=test_set_len [638/910] 459256=test_httpresponses [639/910] 459256=test_encoding [640/910] 459256=test_sockopt [641/910] 459256=string_encoding_test [642/910] 459256=test_install [643/910] 459256=test_rdoc_markup_to_label [644/910] 459256=test_rdoc_markup_pre_process [645/910] 459255=test_printf [646/910] 459255=test_to_ary_concat [647/910] 459256=test_time [648/910] 459256=test_webauthn_listener_response [649/910] 459256=test_stream [650/910] 459256=test_pinned [651/910] 459256=test_emoji_breaks [652/910] 459256=test_gem_bundler_version_finder [653/910] 459256=test_within_pipe [654/910] 459256=test_files_lib [655/910] 459255=test_gem_commands_unpack_command [656/910] 459255=test_beginendblock [657/910] 459253=test_help [658/910] 459253=test_rdoc_markup_to_bs [659/910] 459253=test_digest [660/910] 459253=test_ractor [661/910] 459253=test_rdoc_servlet [662/910] 459253=test_gem_security [663/910] 459255=test_multi_irb_commands [664/910] 459255=test_fiber [665/910] 459254=test_open3 [666/910] 459255=test_bundled_ca [667/910] 459256=test_closure [668/910] 459255=test_delegate [669/910] 459255=test_popen_deadlock [670/910] 459256=test_history [671/910] 459256=test_mkmf [672/910] 459256=test_date_marshal [673/910] 459256=test_recursion [674/910] 459256=test_exit [675/910] 459256=test_io_m17n [676/910] 459255=test_variable_name_check [677/910] 459255=test_did_you_mean [678/910] 459255=test_gem_commands_server_command [679/910] 459255=test_append [680/910] 459255=test_option [681/910] 459255=breadth_first_search_test [682/910] 459255=percent_delimiter_string_test [683/910] 459255=test_cmethod [684/910] 459255=test_tracer [685/910] 459255=node_id_test [686/910] 459255=test_gem_commands_build_command [687/910] 459254=test_interned_str [688/910] 459254=test_case_comprehensive [689/910] 459254=test_ocsp [690/910] 459255=test_class [691/910] 459255=test_pkey_dsa [692/910] 459256=test_scheduler [693/910] 459256=test_exception_at_throwing [694/910] 459256=test_iseq [695/910] 459254=test_rdoc_markup_heading [696/910] 459254=test_transcode [697/910] 459254=test_eval [698/910] 459256=json_generator_test [699/910] 459254=test_config [700/910] 459254=test_gem_resolver_vendor_set [701/910] 459254=test_enumerable [702/910] 459254=test_gem_safe_marshal [703/910] 459255=ruby_parser_test [704/910] 459255=test_gem_resolver_api_set [705/910] 459255=test_ast [706/910] 459254=test_gem_request_set_gem_dependency_api [707/910] 459254=test_lambda [708/910] 459254=test_random_formatter [709/910] 459254=test_helper [710/910] 459254=test_jaro_winkler [711/910] 459254=test_webauthn_listener Leaked file descriptor: WebauthnListenerTest#test_wait_for_otp_code_options_request: 11 : #<TCPSocket:fd 11, AF_INET, 127.0.0.1, 38805> COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ruby 459254 sipeed 11u IPv4 2484977 0t0 TCP localhost:38805->localhost:60578 (CLOSE_WAIT) [712/910] 459254=test_rdoc_code_object [713/910] 459256=test_x509store Closed file descriptor: TestRDocCodeObject#test_parent_file_name: 11 [714/910] 459254=parse_comments_test [715/910] 459254=test_update [716/910] 459254=test_fips [717/910] 459256=test_x509name [718/910] 459256=test_data_error [719/910] 459256=bom_test [720/910] 459256=test_force_exit [721/910] 459256=test_file [722/910] 459254=unescape_test [723/910] 459254=test_udp [724/910] 459254=errors_test [725/910] 459254=test_gem_commands_check_command [726/910] 459254=test_regexp [727/910] 459253=test_vm_dump [728/910] 459253=test_rdoc_markup_document [729/910] 459253=test_integer_comb [730/910] 459256=test_ftp [731/910] 459256=test_tmpdir [732/910] 459256=test_rdoc_ri_paths [733/910] 459256=test_ts [734/910] 459256=test_ensured [735/910] 459256=library_symbols_test [736/910] 459256=test_locale [737/910] 459256=test_addr [738/910] 459256=test_gem_uri_formatter [739/910] 459256=test_erb_command [740/910] 459256=test_helper [741/910] 459256=test_encoding [742/910] 459256=test_project_sanity [743/910] 459256=test_range [744/910] 459256=test_constant [745/910] 459253=test_pty [746/910] 459253=test_dup [747/910] 459253=test_key_actor_emacs [748/910] 459253=test_gem_remote_fetcher_local_ssl_server [749/910] 459253=lex_test [750/910] 459253=test_gem_gemcutter_utilities [751/910] 459253=test_basicinstructions [752/910] 459253=parse_test [753/910] 459253=test_gem_command_manager [754/910] 459253=test_arithmetic_sequence [755/910] 459253=test_cgi_header [756/910] 459253=heredoc_dedent_test [757/910] 459253=test_object [758/910] 459253=version_test [759/910] 459253=test_ractor [760/910] 459256=test_type [761/910] 459256=test_pointer [762/910] 459253=test_big5 [763/910] 459253=test_func [764/910] 459256=test_rdoc_rd_block_parser [765/910] 459256=test_signedness [766/910] 459253=test_tsort [767/910] 459253=test_change_word [768/910] 459253=test_flip [769/910] 459253=test_timeout [770/910] 459253=test_normalize [771/910] 459253=test_ossl [772/910] 459253=test_date_arith [773/910] 459253=test_ruby_lex [774/910] 459253=test_object [775/910] 459253=test_gem_local_remote_options [776/910] 459253=test_sleep [777/910] 459256=test_delete [778/910] 459256=test_win32ole_method [779/910] 459256=test_fd_setsize [780/910] 459256=test_continuation [781/910] 459256=test_class_name_check [782/910] 459253=test_keyword [783/910] 459256=dump_test [784/910] 459253=test_pkey_rsa [785/910] 459256=test_weakkeymap [786/910] 459253=test_gem_commands_push_command [787/910] 459253=test_numhash [788/910] 459253=test_date_strptime [789/910] 459253=test_gem_package_task [790/910] 459253=test_placearg [791/910] 459253=test_rdoc_markup_hard_break [792/910] 459253=test_gem_platform [793/910] 459253=test_import [794/910] 459256=test_gem_resolver_lock_set [795/910] 459256=test_not [796/910] 459256=test_rdoc_parser_markdown [797/910] 459256=attribute_write_test [798/910] 459256=test_file_exhaustive [799/910] 459253=test_gem_update_suggestion [800/910] 459253=test_files_test [801/910] 459253=test_coderange [802/910] 459253=test_symbol [803/910] 459253=test_mailto [804/910] 459253=test_rdoc_generator_darkfish [805/910] 459253=test_rdoc_comment [806/910] 459253=test_resize [807/910] 459253=test_error_highlight [808/910] 459253=test_http_request [809/910] 459253=json_generic_object_test [810/910] 459253=test_gem_source_fetch_problem [811/910] 459253=test_numeric [812/910] 459253=test_member [813/910] 459253=test_cgi_multipart [814/910] 459253=test_word [815/910] 459253=test_gem_commands_cleanup_command [816/910] 459253=test_ractor_compatibility [817/910] 459253=test_dir [818/910] 459253=test_gem_console_ui [819/910] 459253=test_date_ractor [820/910] 459256=test_autoconf [821/910] 459256=test_eval [822/910] 459256=test_unix [823/910] 459256=test_enc_associate [824/910] 459253=test_lazy_enumerator [825/910] 459256=test_find_executable [826/910] 459256=test_coder [827/910] 459256=test_symbol [828/910] 459253=parser_test [829/910] 459253=test_gem_commands_pristine_command [830/910] 459253=test_context [831/910] 459253=test_nofree [832/910] 459253=test_function_entry [833/910] 459253=test_pkcs7 [834/910] 459253=test_gem_resolver_requirement_list [835/910] 459253=test_arith_seq_beg_len_step [836/910] 459253=test_gem_specification [837/910] 459256=test_enum [838/910] 459256=test_threadgroup [839/910] 459256=test_have_macro [840/910] 459256=test_complex2 [841/910] 459253=test_resolve_symbol [842/910] 459256=test_gem_package [843/910] 459253=ractor_test [844/910] 459253=test_trace [845/910] 459253=test_rdoc_generator_json_index [846/910] 459253=test_time_tz [847/910] 459253=test_win32ole_event [848/910] 459253=test_bignum [849/910] 459253=test_rdoc_class_module [850/910] 459256=test_gem_ci_detector [851/910] 459256=test_win32ole_variable [852/910] 459256=test_arity [853/910] 459256=test_stringio [854/910] 459256=test_io_wait_uncommon [855/910] 459256=test_win32ole_variant [856/910] 459256=test_ipaddr [857/910] 459256=test_history [858/910] 459256=test_mixed_unicode_escapes [859/910] 459256=test_rdoc_markup_to_ansi [860/910] 459256=static_literals_test [861/910] 459256=test_gem_resolver_api_specification [862/910] 459256=overlap_test [863/910] 459253=test_merge_keys [864/910] 459253=test_rdoc_extend [865/910] 459253=test_gem_source_lock [866/910] 459256=test_gem [867/910] 459253=test_ractor [868/910] 459253=test_gem_commands_open_command [869/910] 459253=test_dns [870/910] 459253=test_registry [871/910] 459253=test_parser [872/910] 459253=test_cgi_core [873/910] 459253=test_rb_str_dup [874/910] 459253=test_reline_key [875/910] 459253=test_singleton_function [876/910] 459253=test_ancdata [877/910] 459253=test_alias [878/910] 459253=test_timeout [879/910] 459253=test_marshal [880/910] 459256=test_unicode_normalize [881/910] 459256=test_weakref [882/910] 459256=test_nonblock [883/910] 459256=test_my_integer [884/910] 459256=test_thread [885/910] 459253=json_ext_parser_test [886/910] 459253=test_debugger_integration [887/910] 459253=test_rendering [888/910] 459253=test_ractor [889/910] 459254=test_ssl [890/910] 459253=test_object_references [891/910] 459253=test_usrmarshal [892/910] 459253=test_gem_resolver_git_specification [893/910] 459253=test_stat [894/910] 459253=test_gem_request_set_lockfile_tokenizer [895/910] 459253=test_have_func [896/910] 459254=test_nextafter [897/910] 459254=test_capacity [898/910] 459254=ripper_test [899/910] 459254=test_call [900/910] 459254=test_https_proxy [901/910] 459254=test_rubygems [902/910] 459254=test_super [903/910] 459256=test_rubyoptions [904/910] 459254=test_cgi_modruby [905/910] 459254=test_integer [906/910] 459254=test_gem_commands_setup_command [907/910] 459253=test_dryrun [908/910] 459254=test_integer [909/910] 459253=test_env [910/910] 459254=test_rdoc_attr Finished tests in 834.692159s, 38.5771 tests/s, 7803.5464 assertions/s. 32200 tests, 6513559 assertions, 0 failures, 0 errors, 420 skips ruby -v: ruby 3.5.0dev (2025-01-12T00:09:53Z master 8e56d9e415) +PRISM [riscv64-linux] $$$[end] "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j4'" exit with 0. $$$[beg] make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS='-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/riscv64-linux -I/tmp/ruby/src/trunk/include -I/tmp/ruby/src/trunk -I/tmp/ruby/src/trunk/prism -I/tmp/ruby/src/trunk/enc/unicode/15.0.0 -Dmodular_gc_dir= CPPFLAGS = DLDFLAGS = -Wl,--compress-debug-sections=zlib -Wl,-soname,libruby.so.3.5 -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/yjit/target/release/' /tmp/ruby/src/trunk/yjit/src/lib.rs gcc (Debian 13.2.0-23revyos1) 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 making enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'enc'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making srcs under enc make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'srcs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' generating transdb.h transdb.h unchanged making trans make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'trans'. make[1]: Leaving directory '/tmp/ruby/build/trunk' making encs make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'encs'. make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefiles ext/configure-ext.mk ext/configure-ext.mk updated make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' generating makefile exts.mk exts.mk unchanged make[1]: Entering directory '/tmp/ruby/build/trunk' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/coverage' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/date' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/date' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/digest/sha2' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/fiddle' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/io/console' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/json' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/json' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/monitor' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/objspace' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/openssl' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pathname' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/psych' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/pty' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/ripper' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/rubyvm' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/socket' make[2]: Entering directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Leaving directory '/tmp/ruby/build/trunk/ext/strscan' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/bigdecimal-3.1.9/ext/bigdecimal' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/debug-1.10.0/ext/debug' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/nkf-0.2.0/ext/nkf' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/racc-1.8.1/ext/racc/cparse' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/rbs-3.8.1/ext/rbs_extension' make[2]: Entering directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Leaving directory '/tmp/ruby/build/trunk/.bundle/gems/syslog-0.2.0/ext/syslog' make[2]: Entering directory '/tmp/ruby/build/trunk' make[2]: 'ruby' is up to date. make[2]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Leaving directory '/tmp/ruby/build/trunk' make[1]: Entering directory '/tmp/ruby/build/trunk' make[1]: Nothing to be done for 'note'. make[1]: Leaving directory '/tmp/ruby/build/trunk' ruby 3.5.0dev (2025-01-12T00:09:53Z master 8e56d9e415) +PRISM [riscv64-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 ...................................................... Finished in 110.148842 seconds 3413 files, 33293 examples, 137232 expectations, 0 failures, 0 errors, 0 tagged $$$[end] "make yes-test-rubyspec MSPECOPT='--error-output stderr -j' TESTS='-j4'" exit with 0.