test-bundler failed just one example (./spec/bundler/bundler/cli_common_spec.rb:7). However, test-bundler-parallel is successful. I think this is happening because while test-bundler includes the `--disable-gems` option, it is not sp...tikkss (Tsutomu Katsube)
Eregon (Benoit Daloze) wrote in #note-2: > Did you measure the difference in memory usage? > ... Thanks for your reply. No, I didn't. But I took this opportunity to give it a try. I increased the number of classes with three methods to ...tikkss (Tsutomu Katsube)
I describe the use case of test-unit. Now, we are implementing `Ractor` based parallel test runner. The tests are run on non-main ractors. We have met a lot of `Ractor::IsolationError`. Each time, We have tried using `freeze` or ...tikkss (Tsutomu Katsube)
Description --- When Ruby Box is enabled (`RUBY_BOX=1`), `$!` inside `rescue` does not change after the first exception. `$!` is expected to show the exception for each `rescue` block, but it always shows the first one. Steps t...tikkss (Tsutomu Katsube)
### Status Currently, non-main ractors prohibit access to the following objects to prevent data races: * Global variables * Class variables * Unshareable class instance variables * Unshareable constants ### Proposal ...tikkss (Tsutomu Katsube)
Though this is just a bug report, it's my first contribution to Ruby Core. I'm excited to know some new words such as off-one-by bug, valgrind, miniruby, OP reports that were unfamiliar to me. Thanks!tikkss (Tsutomu Katsube)
Thank you very much! I have confirmed a83c91dd7a addresses the issue on Intel mac: ```console $ ruby -v ruby 3.4.0dev (2024-10-21T11:40:42Z master a83c91dd7a) +PRISM [x86_64-darwin24] $ bundle exec rake ostruct was loaded fro...tikkss (Tsutomu Katsube)
> This PR seems relevant, and fits in the (rather large) preview1/preview2 window: https://github.com/ruby/ruby/pull/11519 Thanks for your sharing. According to git bisect between preview1 and preview2, it is triggered since ruby 3...tikkss (Tsutomu Katsube)