Try to ensure the runner's handler gets called first

This commit is contained in:
blob1807
2025-12-24 00:39:21 +10:00
parent 4eeb509fe8
commit 13faedaf4c

View File

@@ -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) {