renchap (Renaud Chaput)
- Login: renchap
- Registered on: 04/30/2018
- Last sign in: 04/30/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/26/2023
-
12:04 PM Ruby Bug #19379 (Closed): Regex: "end pattern with unmatched parenthesis" with Ruby 3.2 and interpolation
- Sample code:
```
r2 = %r{#c-\w+/comment/[\w-]+}
%r{https?://[^/]+#{r2}}x
```
This works with Ruby 3.1:
```
irb(main):001:0> r2 = %r{#c-\w+/comment/[\w-]+}
irb(main):002:0> %r{https?://[^/]+#{r2}}x
=> /https?:\/\/[^\/]+(?-m...
12/29/2018
-
02:50 PM Ruby Bug #14714: Ruby 2.5.1 Segmentation Fault in GC
- I just ran my test suite 5 times with Ruby 2.6.0 on macOS 10.14.2 and have not been able to reproduce this crash anymore.
Could you please all check if you still see this crash with the latest release?
10/22/2018
-
07:19 AM Ruby Bug #14714: Ruby 2.5.1 Segmentation Fault in GC
- I tried to run my test suite (the only thing that I found triggering the crash) with `FIBER_USE_NATIVE=1` and it worked on the first try, the crashed on the next one. Not sure they are the same bug, but probably related.
10/20/2018
-
12:08 PM Ruby Bug #14714: Ruby 2.5.1 Segmentation Fault in GC
- I just tested with 2.5.2 and 2.6.0-preview2 and I can still reproduce this when running my tests.
This still happens in GC:
~~~
-- C level backtrace information -------------------------------------------
0 ruby ...
05/02/2018
-
10:06 AM Ruby Bug #14714: Ruby 2.5.1 Segmentation Fault in GC
- I also tried to isolate my vips-related code in a new Ruby program, and ran it 100 times with `GC.stress = true`, without being able to reproduce.
04/30/2018
-
03:22 PM Ruby Bug #14714: Ruby 2.5.1 Segmentation Fault in GC
- I think I am seeing a similar bug.
My test suite (Rails system tests, using Minitest and Capybara) is crashing on MacOS when using Ruby 2.5.1.
It is not happening with MRI 2.4.4, or on Linux (containers on Circle CI) using 2.5.1.
...