diff --git a/src/libraries/System.Runtime/tests/System/IntPtrTests.GenericMath.cs b/src/libraries/System.Runtime/tests/System/IntPtrTests.GenericMath.cs index 6b010f9a75d2a7..4fae5c21733fd3 100644 --- a/src/libraries/System.Runtime/tests/System/IntPtrTests.GenericMath.cs +++ b/src/libraries/System.Runtime/tests/System/IntPtrTests.GenericMath.cs @@ -784,6 +784,7 @@ public static void CreateSaturatingFromCharTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void CreateSaturatingFromInt16Test() { Assert.Equal((nint)0x00000000, NumberHelper.CreateSaturating(0x0000)); @@ -846,6 +847,7 @@ public static void CreateSaturatingFromIntPtrTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void CreateSaturatingFromSByteTest() { Assert.Equal((nint)0x00000000, NumberHelper.CreateSaturating(0x00)); @@ -949,6 +951,7 @@ public static void CreateTruncatingFromCharTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void CreateTruncatingFromInt16Test() { if (Environment.Is64BitProcess) @@ -1022,6 +1025,7 @@ public static void CreateTruncatingFromIntPtrTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void CreateTruncatingFromSByteTest() { if (Environment.Is64BitProcess) @@ -1231,6 +1235,7 @@ public static void TryCreateFromCharTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void TryCreateFromInt16Test() { nint result; @@ -1355,6 +1360,7 @@ public static void TryCreateFromIntPtrTest() } [Fact] + [ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)] public static void TryCreateFromSByteTest() { nint result; diff --git a/src/libraries/tests.proj b/src/libraries/tests.proj index 60b966eaa76ce9..592a83a1a93149 100644 --- a/src/libraries/tests.proj +++ b/src/libraries/tests.proj @@ -181,7 +181,7 @@ - +