From 0a0ee1bebd486559932c1026988a17c50b2439ae Mon Sep 17 00:00:00 2001 From: scawful Date: Mon, 29 Jul 2024 18:25:39 -0400 Subject: [PATCH] disable test engine crash handler for now --- src/app/core/controller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/controller.cc b/src/app/core/controller.cc index e4d1d116..6511b6f2 100644 --- a/src/app/core/controller.cc +++ b/src/app/core/controller.cc @@ -415,7 +415,7 @@ absl::Status Controller::CreateTestContext() { ImGuiTestEngine_Start(engine, ImGui::GetCurrentContext()); // TODO: Setup with absl signal handler - ImGuiTestEngine_InstallDefaultCrashHandler(); + // ImGuiTestEngine_InstallDefaultCrashHandler(); return absl::OkStatus(); }