Imported Upstream version 6.0.0.309

Former-commit-id: b74f48d6b8af15bcc312f0a0cdd51a3cbeacdb37
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-06-22 08:37:59 +00:00
parent c504452303
commit 43178b2bf1
50 changed files with 51 additions and 43 deletions

View File

@@ -414,6 +414,10 @@ public class Tests : TestsBase, ITest2
unhandled_exception ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-wrapper") {
unhandled_exception_wrapper ();
return 0;
}
if (args.Length >0 && args [0] == "unhandled-exception-endinvoke") {
unhandled_exception_endinvoke ();
return 0;
@@ -1483,6 +1487,10 @@ public class Tests : TestsBase, ITest2
Thread.Sleep (10000);
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_wrapper () {
throw new ArgumentException("test");
}
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void unhandled_exception_endinvoke_2 () {
}

View File

@@ -1 +1 @@
b0c0de5c832e47168e591f21dfc9a8b6866a32d2
6ac1934d3bf36a8694c80b93904eb5ddf2895af3