Skip to content

Commit

Permalink
[iOS] Reenable skipped StructureToPtr tests (#73236)
Browse files Browse the repository at this point in the history
As a result of #73013 landing, the skipped StructureToPtr tests can be enabled.

Contributes to #73008
  • Loading branch information
steveisok authored Aug 5, 2022
1 parent a1a6bb3 commit 591601a
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace System.Runtime.InteropServices.Tests
public class PtrToStructureTests
{
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/73008", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void StructureToPtr_NonGenericType_ReturnsExpected()
{
var structure = new SequentialClass
Expand Down Expand Up @@ -65,7 +64,6 @@ public void StructureToPtr_GenericType_ReturnsExpected()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/73008", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void StructureToPtr_NonGenericObject_ReturnsExpected()
{
var structure = new SomeTestStruct
Expand All @@ -92,7 +90,6 @@ public void StructureToPtr_NonGenericObject_ReturnsExpected()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/73008", TestPlatforms.iOS | TestPlatforms.tvOS)]
public void StructureToPtr_GenericObject_ReturnsExpected()
{
var structure = new SomeTestStruct
Expand Down Expand Up @@ -149,7 +146,6 @@ public void PtrToStructure_AutoLayoutClass_ThrowsArgumentException()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/73008", TestPlatforms.iOS | TestPlatforms.tvOS)]
public unsafe void PtrToStructure_GenericLayoutClass_Generic()
{
int i = 42;
Expand All @@ -160,7 +156,6 @@ public unsafe void PtrToStructure_GenericLayoutClass_Generic()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/73008", TestPlatforms.iOS | TestPlatforms.tvOS)]
public unsafe void PtrToStructure_GenericLayoutClass()
{
int i = 42;
Expand Down

0 comments on commit 591601a

Please sign in to comment.