Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
7eaa5119
Commit
7eaa5119
authored
Sep 04, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Sep 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Adjust test_nested_exception() for Win11 results.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55238
parent
9cf55056
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
exception.c
dlls/ntdll/tests/exception.c
+3
-2
No files found.
dlls/ntdll/tests/exception.c
View file @
7eaa5119
...
...
@@ -4947,7 +4947,8 @@ static DWORD nested_exception_handler(EXCEPTION_RECORD *rec, EXCEPTION_REGISTRAT
return
ExceptionContinueExecution
;
}
if
(
rec
->
ExceptionCode
==
0xdeadbeef
&&
rec
->
ExceptionFlags
==
EH_NESTED_CALL
)
if
(
rec
->
ExceptionCode
==
0xdeadbeef
&&
(
rec
->
ExceptionFlags
==
EH_NESTED_CALL
||
rec
->
ExceptionFlags
==
(
EH_NESTED_CALL
|
EXCEPTION_SOFTWARE_ORIGINATE
)))
{
ok
(
!
rec
->
NumberParameters
,
"Got unexpected rec->NumberParameters %lu.
\n
"
,
rec
->
NumberParameters
);
got_nested_exception
=
TRUE
;
...
...
@@ -4955,7 +4956,7 @@ static DWORD nested_exception_handler(EXCEPTION_RECORD *rec, EXCEPTION_REGISTRAT
return
ExceptionContinueSearch
;
}
ok
(
rec
->
ExceptionCode
==
0xdeadbeef
&&
!
rec
->
ExceptionFlags
,
ok
(
rec
->
ExceptionCode
==
0xdeadbeef
&&
(
!
rec
->
ExceptionFlags
||
rec
->
ExceptionFlags
==
EXCEPTION_SOFTWARE_ORIGINATE
)
,
"Got unexpected exception code %#lx, flags %#lx.
\n
"
,
rec
->
ExceptionCode
,
rec
->
ExceptionFlags
);
ok
(
!
rec
->
NumberParameters
,
"Got unexpected rec->NumberParameters %lu.
\n
"
,
rec
->
NumberParameters
);
ok
(
frame
==
(
void
*
)((
BYTE
*
)
nested_exception_initial_frame
+
8
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment