diff --git a/src/tests/Interop/StringMarshalling/Common/StringBuilderTests.cs b/src/tests/Interop/StringMarshalling/Common/StringBuilderTests.cs index f09305a2a03046..84bd526f1997d8 100644 --- a/src/tests/Interop/StringMarshalling/Common/StringBuilderTests.cs +++ b/src/tests/Interop/StringMarshalling/Common/StringBuilderTests.cs @@ -15,6 +15,7 @@ public partial class StringBuilderTests private static readonly string InitialString = "Hello World"; [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/123529", typeof(TestLibrary.Utilities), nameof(TestLibrary.Utilities.IsNativeAot))] public static void ByValue() { var builder = new StringBuilder(InitialString); @@ -23,6 +24,7 @@ public static void ByValue() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/123529", typeof(TestLibrary.Utilities), nameof(TestLibrary.Utilities.IsNativeAot))] public static void ByRef() { var builder = new StringBuilder(InitialString); @@ -31,6 +33,7 @@ public static void ByRef() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/123529", typeof(TestLibrary.Utilities), nameof(TestLibrary.Utilities.IsNativeAot))] public static void ReversePInvoke() { var builder = new StringBuilder(InitialString);