From 13faedaf4ce3a24ed92917d44244f226ff3fed57 Mon Sep 17 00:00:00 2001 From: blob1807 <12388588+blob1807@users.noreply.github.com> Date: Wed, 24 Dec 2025 00:39:21 +1000 Subject: [PATCH] Try to ensure the runner's handler gets called first --- core/testing/signal_handler_windows.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/testing/signal_handler_windows.odin b/core/testing/signal_handler_windows.odin index 8843dde92..ef4a9d75d 100644 --- a/core/testing/signal_handler_windows.odin +++ b/core/testing/signal_handler_windows.odin @@ -165,7 +165,7 @@ _setup_signal_handler :: proc() { // - Asserts and panics; // - Arithmetic errors; and // - Segmentation faults (illegal memory access). - win32.AddVectoredExceptionHandler(0, stop_test_callback) + win32.AddVectoredExceptionHandler(1, stop_test_callback) } _setup_task_signal_handler :: proc(test_index: int) {