Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Suppress Emit5 tests in mono
  • Loading branch information
panguye committed Jun 8, 2022
commit 8c22d3201507a082e4472ca8911ce5e11d4ab590
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace System.Reflection.Emit.Tests
public class ILGeneratorEmit5
{
[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63805", TestRuntimes.Mono)]
public void MaxStackOverflowTest()
{
Run(1 << 5);
Expand Down Expand Up @@ -76,6 +77,7 @@ static MethodInfo GetCode(int num)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63805", TestRuntimes.Mono)]
public void MaxStackNonEmptyForward()
{
// This test uses forward branches to "new" basic blocks where the stack depth
Expand Down Expand Up @@ -139,6 +141,7 @@ static MethodInfo GetCode(int num)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63805", TestRuntimes.Mono)]
public void MaxStackNonEmptyBackward()
{
// This test uses backward branches to "new" basic blocks where the stack depth
Expand Down Expand Up @@ -212,6 +215,7 @@ static MethodInfo GetCode(int num)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63805", TestRuntimes.Mono)]
public void AmbiguousDepth()
{
var meth = GetCode();
Expand Down Expand Up @@ -258,6 +262,7 @@ static MethodInfo GetCode()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63805", TestRuntimes.Mono)]
public void UnreachableDepth()
{
var meth = GetCode();
Expand Down