2 using System
.Diagnostics
;
3 using System
.Threading
;
4 using System
.Threading
.Tasks
;
6 class CustomException
: Exception
12 /* expected exit code: 255 */
13 static void Main (string[] args
)
15 if (Environment
.GetEnvironmentVariable ("TEST_UNHANDLED_EXCEPTION_HANDLER") != null)
16 AppDomain
.CurrentDomain
.UnhandledException
+= (s
, e
) => {};
18 ManualResetEvent mre
= new ManualResetEvent (false);
20 var a
= new Action (() => { try { throw new CustomException (); }
finally { mre.Set (); }
});
21 var ares
= a
.BeginInvoke (null, null);
23 if (!mre
.WaitOne (5000))
29 } catch (CustomException
) {
30 /* expected behaviour */
31 Environment
.Exit (255);
32 } catch (Exception ex
) {
33 Console
.WriteLine (ex
);