summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-08-20 20:36:28 -0700
committerJan Kotas <jkotas@microsoft.com>2015-08-20 20:36:28 -0700
commit69dcfe966ba7bf7ffd3dd2b000943590279da358 (patch)
treec6fb61bcdae2b164a9cea85884d33c9b10d112ab
parentf31a36b395cf8139489b5c94e47c542abee2240f (diff)
downloadcoreclr-69dcfe966ba7bf7ffd3dd2b000943590279da358.tar.gz
coreclr-69dcfe966ba7bf7ffd3dd2b000943590279da358.tar.bz2
coreclr-69dcfe966ba7bf7ffd3dd2b000943590279da358.zip
Disable test failing on VS2015
Failure tracked by #1421 RyuJIT generates incorrect exception handling scopes for IL generated by Roslyn
-rw-r--r--tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs
index d4cbdc660c..c0ee4ebcab 100644
--- a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs
+++ b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b43313/b43313.cs
@@ -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)
{