Skip to content

Commit 8c3c9ad

Browse files
committed
Add back active issue
1 parent 408e51f commit 8c3c9ad

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

src/libraries/System.Runtime.InteropServices/tests/System/Runtime/InteropServices/Marshal/GetDelegateForFunctionPointerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
namespace System.Runtime.InteropServices.Tests
1212
{
13+
[ActiveIssue("https://github.com/dotnet/runtime/issues/39187", TestPlatforms.Browser)]
1314
public class GetDelegateForFunctionPointerTests
1415
{
1516
[Theory]

src/libraries/System.Runtime.InteropServices/tests/System/Runtime/InteropServices/Marshal/GetFunctionPointerForDelegateTests.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace System.Runtime.InteropServices.Tests
1111
public class GetFunctionPointerForDelegateTests
1212
{
1313
[Fact]
14+
[ActiveIssue("https://github.com/dotnet/runtime/issues/39187", TestPlatforms.Browser)]
1415
public void GetFunctionPointerForDelegate_NormalDelegateNonGeneric_ReturnsExpected()
1516
{
1617
MethodInfo targetMethod = typeof(GetFunctionPointerForDelegateTests).GetMethod(nameof(Method), BindingFlags.NonPublic | BindingFlags.Static);
@@ -23,6 +24,7 @@ public void GetFunctionPointerForDelegate_NormalDelegateNonGeneric_ReturnsExpect
2324
}
2425

2526
[Fact]
27+
[ActiveIssue("https://github.com/dotnet/runtime/issues/39187", TestPlatforms.Browser)]
2628
public void GetFunctionPointerForDelegate_MarshalledDelegateNonGeneric_ReturnsExpected()
2729
{
2830
MethodInfo targetMethod = typeof(GetFunctionPointerForDelegateTests).GetMethod(nameof(Method), BindingFlags.NonPublic | BindingFlags.Static);
@@ -39,6 +41,7 @@ public void GetFunctionPointerForDelegate_MarshalledDelegateNonGeneric_ReturnsEx
3941
}
4042

4143
[Fact]
44+
[ActiveIssue("https://github.com/dotnet/runtime/issues/39187", TestPlatforms.Browser)]
4245
public void GetFunctionPointerForDelegate_NormalDelegateGeneric_ReturnsExpected()
4346
{
4447
MethodInfo targetMethod = typeof(GetFunctionPointerForDelegateTests).GetMethod(nameof(Method), BindingFlags.NonPublic | BindingFlags.Static);
@@ -51,6 +54,7 @@ public void GetFunctionPointerForDelegate_NormalDelegateGeneric_ReturnsExpected(
5154
}
5255

5356
[Fact]
57+
[ActiveIssue("https://github.com/dotnet/runtime/issues/39187", TestPlatforms.Browser)]
5458
public void GetFunctionPointerForDelegate_MarshalledDelegateGeneric_ReturnsExpected()
5559
{
5660
MethodInfo targetMethod = typeof(GetFunctionPointerForDelegateTests).GetMethod(nameof(Method), BindingFlags.NonPublic | BindingFlags.Static);

0 commit comments

Comments
 (0)