Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tests] Re-enable generic math Create tests on iOS #67542

Merged
merged 2 commits into from
Apr 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,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 @@ -846,7 +845,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 @@ -950,7 +948,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 @@ -1024,7 +1021,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 @@ -1234,7 +1230,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 @@ -1359,7 +1354,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