disable crash handler to diagnose crash in github workflows

This commit is contained in:
Nikita Smith
2026-02-23 11:42:30 -08:00
parent b022492c7b
commit 6e1816a01c
+2 -1
View File
@@ -87,7 +87,8 @@ t_run(T_Run run)
{
T_RunCtx ctx = {0};
ctx.run = run;
os_safe_call(t_run_caller, t_run_fail_handler, &ctx);
//os_safe_call(t_run_caller, t_run_fail_handler, &ctx);
t_run_caller(&ctx);
return ctx.result;
}