exception code filter project settings / ui

This commit is contained in:
Ryan Fleury
2025-04-26 14:50:49 -07:00
parent 2092f5ca69
commit 6a7420b7aa
5 changed files with 173 additions and 56 deletions
+15
View File
@@ -2524,6 +2524,19 @@ jit_stepping_tests(void)
////////////////////////////////
// NOTE(allen): Exception Stepping
static void
exception_filter_test(void)
{
__try
{
RaiseException(0xc0000095, 0, 0, 0);
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
OutputDebugStringA("did an exception\n");
}
}
int *global_null_read_pointer = 0;
static void
trip(void){
@@ -2805,6 +2818,8 @@ mule_main(int argc, char** argv)
fancy_viz_eval_tests();
exception_filter_test();
markup_tests();
// NOTE(allen): Stepping Tests