Skip to content

Commit 0ddb6b0

Browse files
[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]>
1 parent edd05fd commit 0ddb6b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libraries/System.Runtime.InteropServices/tests/LibraryImportGenerator.Tests/CollectionMarshallingFails.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ public static partial void NegateBoolsRef2D_ClearMarshalling(
110110
public class CollectionMarshallingFails
111111
{
112112
[Fact]
113-
public void UTFStringConversionFailures()
113+
[SkipOnCI("Allocates enough memory that the OOM killer can kill the process on our Helix machines.")]
114+
public void BigUTFStringConversionFailures()
114115
{
115116
bool threw = false;
116117
try

0 commit comments

Comments
 (0)