-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Disable GC stress tests for the interpreter test #112906
Disable GC stress tests for the interpreter test #112906
Conversation
There is a problem with the interpreter codegen and GC stress. The runtime is attempting to sprinkle breakpoints in the interpreter IR. Temporarily disable the GC stress for the test until it is fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.
The test also fails in pipelines without GCStress, e.g. https://helixr1107v0xdcypoyl9e7f.blob.core.windows.net/dotnet-runtime-refs-heads-main-b10063831ae64414b9/JIT_others/1/console.5c9a5e09.log?helixlogtype=result. It looks like it needs to be disabled more broadly. |
Thanks @jakobbotsch for pointing it out. I was not aware of the other crashes. |
I've found the culprit for the other issue that @jakobbotsch mentioned. It is a different problem, so this PR makes sense as is. I'll create a PR to fix the other crash. |
Co-authored-by: Larry Ewing <lewing@microsoft.com>
Thanks @lewing I haven't noticed that missing newline. |
There is a problem with the interpreter codegen and GC stress. The runtime is attempting to sprinkle breakpoints in the interpreter IR.
Temporarily disable the GC stress for the test until it is fixed.