Skip to content

Commit

Permalink
[tests] Re-enable generic math Create tests on iOS
Browse files Browse the repository at this point in the history
Fixes dotnet#61920

Fixed by dotnet#66739
  • Loading branch information
lambdageek committed Apr 4, 2022
1 parent fe4ae7d commit 587ef0c
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,6 @@ 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<nint>.CreateSaturating<short>(0x0000));
Expand Down Expand Up @@ -847,7 +846,6 @@ 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<nint>.CreateSaturating<sbyte>(0x00));
Expand Down Expand Up @@ -951,7 +949,6 @@ public static void CreateTruncatingFromCharTest()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)]
public static void CreateTruncatingFromInt16Test()
{
if (Environment.Is64BitProcess)
Expand Down Expand Up @@ -1025,7 +1022,6 @@ public static void CreateTruncatingFromIntPtrTest()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)]
public static void CreateTruncatingFromSByteTest()
{
if (Environment.Is64BitProcess)
Expand Down Expand Up @@ -1235,7 +1231,6 @@ public static void TryCreateFromCharTest()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)]
public static void TryCreateFromInt16Test()
{
nint result;
Expand Down Expand Up @@ -1360,7 +1355,6 @@ public static void TryCreateFromIntPtrTest()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/61920", TestPlatforms.iOS | TestPlatforms.tvOS)]
public static void TryCreateFromSByteTest()
{
nint result;
Expand Down

0 comments on commit 587ef0c

Please sign in to comment.