mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-02 03:58:11 +00:00
exception code filter project settings / ui
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user