mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 06:18:39 +00:00
Revert "Try to ensure the runner's handler gets called first"
This reverts commit 13faedaf4c. As it's causing issues with ASAN, which adds it's own `ExceptionHandler` as the first. Making ours first messes with it. Causing an Access Violation when trying to setup `context` in our handler.
This commit is contained in:
@@ -165,7 +165,7 @@ _setup_signal_handler :: proc() {
|
||||
// - Asserts and panics;
|
||||
// - Arithmetic errors; and
|
||||
// - Segmentation faults (illegal memory access).
|
||||
win32.AddVectoredExceptionHandler(1, stop_test_callback)
|
||||
win32.AddVectoredExceptionHandler(0, stop_test_callback)
|
||||
}
|
||||
|
||||
_setup_task_signal_handler :: proc(test_index: int) {
|
||||
|
||||
Reference in New Issue
Block a user