Doug McCluer
03/26/2025, 3:01 AMpeople do write code without structured concurrency support. To help them find the places where their code crashes, we've added special behavior:How can I find out where those unhandled exceptions are reported?keeps track of all unhandled exceptions in the system, and if there are any, reports them somewhere, even if they are unrelated to the testrunTest
Dmitry Khalanskiy [JB]
03/26/2025, 7:36 AMrunTest
. Either at the end of the test where unhandled exceptions happened, or at some point during the later tests.Doug McCluer
03/27/2025, 2:55 PMUncaughtExceptionsBeforeTest
, but it doesn't tell me what exception was uncaught, or what test produced it and I don't see a exception previously reported in the log. Where should I look to learn what the exception was which went uncaught?Dmitry Khalanskiy [JB]
03/27/2025, 3:07 PMUncaughtExceptionsBeforeTest
, so it should be included in the log along with the stacktrace of the UncaughtExceptionsBeforeTest
.Doug McCluer
03/27/2025, 3:23 PM