From 6e1816a01c01421d09d331f5d04da1fc12ddf542 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Mon, 23 Feb 2026 11:42:30 -0800 Subject: [PATCH] disable crash handler to diagnose crash in github workflows --- src/torture/torture.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/torture/torture.c b/src/torture/torture.c index b4744af6..6aed36e3 100644 --- a/src/torture/torture.c +++ b/src/torture/torture.c @@ -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; }