Bug #12614
closedSegmentation Fault on Ruby 2.3.1
Description
Description¶
We have an extensive test matrix that tests many versions of Rails over many versions of Ruby. We notice frequent segfaults when running our Rails 3.1 suite with Ruby 2.3.1p112. We run the same suite with Ruby 1.8 - Ruby 2.2 without issues. It appears that our test suite is exposing a subtle bug in Ruby that I suspect that it is related to garbage collection. The segfault does not occur everytime the test suite runs, but if I run the suite in a bash for loop for 100 iterations I usually see 5-10 segfaults. If I turn off garbage collection during the test cases the segfault does not occur over 100 iterations of the test suite.
To Reproduce¶
I tried, but was unable to come up with a minimal reproduction case. Our code and test suite are publically available and I'll list the steps you can follow to reproduce the issue with some additional setup.
- Clone the newrelic rpm github repo from: https://github.com/newrelic/rpm
- git checkout 3.16.0.318
- bundle install
- run the test suite a single time (you probably won't see a segfault): bundle exec rake test:multiverse[rails,env=6]
- run the test suite in a bash for loop for 100 iterations: for i in `seq 1 100`; do bundle exec rake test:multiverse[rails,env=6]; done
Segfault Output¶
Possibly Related:¶
https://bugs.ruby-lang.org/issues/11846
Files