diff --git a/ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs b/ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs index 58edfd007..01f85c743 100644 --- a/ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs +++ b/ICSharpCode.Decompiler.Tests/CorrectnessTestRunner.cs @@ -220,6 +220,12 @@ namespace ICSharpCode.Decompiler.Tests RunIL("Jmp.il"); } + [Test] + public void StackTests() + { + RunIL("StackTests.il"); + } + [Test] public void StackTypes([Values(false, true)] bool force32Bit) { diff --git a/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj b/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj index a2852c603..344555f2d 100644 --- a/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj +++ b/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj @@ -51,6 +51,7 @@ + diff --git a/ICSharpCode.Decompiler.Tests/IL/StackTests.il b/ICSharpCode.Decompiler.Tests/TestCases/Correctness/StackTests.il similarity index 100% rename from ICSharpCode.Decompiler.Tests/IL/StackTests.il rename to ICSharpCode.Decompiler.Tests/TestCases/Correctness/StackTests.il