-
Notifications
You must be signed in to change notification settings - Fork 5k
Disable the UTFStringConversionFailures test on CI runs #114747
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
Conversation
…machines can't handle the load from allocating 2 2GB strings and the OOM killer was killing the process.
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.
Comments suppressed due to low confidence (1)
src/libraries/System.Runtime.InteropServices/tests/LibraryImportGenerator.Tests/CollectionMarshallingFails.cs:113
- Disabling the test reduces CI coverage; please ensure that issue SIGKILL (OOM?) while running LibraryImportGenerator.Tests w/o actionable log messages or artifacts #114241 tracks plans for addressing this or running the test in a memory-optimized environment.
[SkipOnCI("Allocates enough memory that the OOM killer can kill the process on our Helix machines.")]
Tagging subscribers to this area: @dotnet/interop-contrib |
@@ -110,6 +110,7 @@ public static partial void NegateBoolsRef2D_ClearMarshalling( | |||
public class CollectionMarshallingFails | |||
{ | |||
[Fact] | |||
[SkipOnCI("Allocates enough memory that the OOM killer can kill the process on our Helix machines.")] | |||
public void UTFStringConversionFailures() |
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.
Would it make sense to name this as something specific to conversion failures due to the long string?
/ba-g wasm failures unrelated |
Disable the UTFStringConversionFailures test on CI runs as our Helix machines can't handle the load from allocating 2 2GB strings and the OOM killer was killing the process.
Fixes #114241