Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrchr-github committed Jun 18, 2024
1 parent 6e7b128 commit eb1811c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/cfg/windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1163,11 +1163,12 @@ BOOL MyEnableWindow(HWND hWnd, BOOL bEnable) {
}

int SEH_filter(unsigned int code, struct _EXCEPTION_POINTERS* ep);
int SEH_throwing_func();

void SEH_knownConditionTrueFalse() { // #8434
int r = 0;
__try {
r = h();
r = SEH_throwing_func();
}
__except (SEH_filter(GetExceptionCode(), GetExceptionInformation())) {
r = 1;
Expand Down

0 comments on commit eb1811c

Please sign in to comment.