-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failure in SimpleCov test suite #3535
Comments
The failing test checks that It seems the issue is that This codesnippet reproduces the issue: at_exit do
puts "#1"
puts $!.inspect
end
at_exit do
puts "#2"
exit 42
end Ruby 3.2
TruffleRuby master
|
@andrykonchin great reproduction work, thank you very much! 💚 |
Fixed in cc2d014 |
@andrykonchin Could you make a PR to SimpleCov to unexclude that test? (see link in description) |
The enabled back test case is supposed to pass on TruffleRuby head (that is used in the scheduled builds) and still fail on TruffleRuby 24.0.0 (that is used in builds triggered in PRs). So what is better to do - to unexclude the test now and don't run specs on TruffleRuby 24.0.0 or unexclude it later when the fix is released? |
@andrykonchin unexclude it later when the fix is released and available on github actions (imo) |
But it will be like 6 months until the next release. |
Right, makes sense. |
From https://github.com/simplecov-ruby/simplecov/pull/1079/files#r1566262539
The failure is:
Note the exit code is already correct (the spec above), but for some reason there is no output.
The text was updated successfully, but these errors were encountered: