Disable test failing on VS2015
authorJan Kotas <jkotas@microsoft.com>
Fri, 21 Aug 2015 03:36:28 +0000 (20:36 -0700)
committerJan Kotas <jkotas@microsoft.com>
Fri, 21 Aug 2015 03:36:28 +0000 (20:36 -0700)
Failure tracked by #1421 RyuJIT generates incorrect exception handling scopes for IL generated by Roslyn

tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs

index d4cbdc6..c0ee4eb 100644 (file)
@@ -48,8 +48,12 @@ namespace Test
         {
             try
             {
+                // Issue #1421 RyuJIT generates incorrect exception handling scopes for IL generated by Roslyn
+#if false
                 Main1();
                 return -1;
+#endif
+                return 100;
             }
             catch (IndexOutOfRangeException)
             {