You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[release/9.0-staging] Disable the UTFStringConversionFailures test on CI runs (#116460)
* 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.
* Rename test as well
---------
Co-authored-by: Jeremy Koritzinsky <[email protected]>
Co-authored-by: Jeremy Koritzinsky <[email protected]>
Copy file name to clipboardExpand all lines: src/libraries/System.Runtime.InteropServices/tests/LibraryImportGenerator.Tests/CollectionMarshallingFails.cs
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,8 @@ public static partial void NegateBoolsRef2D_ClearMarshalling(
110
110
publicclassCollectionMarshallingFails
111
111
{
112
112
[Fact]
113
-
publicvoidUTFStringConversionFailures()
113
+
[SkipOnCI("Allocates enough memory that the OOM killer can kill the process on our Helix machines.")]
0 commit comments