Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0883dafe
Commit
0883dafe
authored
Aug 18, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Don't mark Wow64 behavior as broken.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ce5c9891
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
exception.c
dlls/ntdll/tests/exception.c
+3
-3
No files found.
dlls/ntdll/tests/exception.c
View file @
0883dafe
...
...
@@ -470,7 +470,7 @@ static LONG CALLBACK rtlraiseexception_vectored_handler(EXCEPTION_POINTERS *Exce
if
(
rec
->
ExceptionCode
==
EXCEPTION_BREAKPOINT
)
{
ok
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xa
||
broken
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xb
)
/* win2k3 */
||
(
is_wow64
&&
context
->
Eip
==
(
DWORD
)
code_mem
+
0xb
)
||
broken
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xd
)
/* w2008 */
,
"Eip at %x instead of %x or %x
\n
"
,
context
->
Eip
,
(
DWORD
)
code_mem
+
0xa
,
(
DWORD
)
code_mem
+
0xb
);
...
...
@@ -507,7 +507,7 @@ static DWORD rtlraiseexception_handler( EXCEPTION_RECORD *rec, EXCEPTION_REGISTR
if
(
rec
->
ExceptionCode
==
EXCEPTION_BREAKPOINT
)
{
ok
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xa
||
broken
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xb
)
/* win2k3 */
||
(
is_wow64
&&
context
->
Eip
==
(
DWORD
)
code_mem
+
0xb
)
||
broken
(
context
->
Eip
==
(
DWORD
)
code_mem
+
0xd
)
/* w2008 */
,
"Eip at %x instead of %x or %x
\n
"
,
context
->
Eip
,
(
DWORD
)
code_mem
+
0xa
,
(
DWORD
)
code_mem
+
0xb
);
...
...
@@ -1177,7 +1177,7 @@ static void test_debugger(DWORD cont_status)
if
(
de
.
u
.
Exception
.
ExceptionRecord
.
ExceptionCode
==
EXCEPTION_BREAKPOINT
)
{
ok
((
char
*
)
ctx
.
Eip
==
(
char
*
)
code_mem_address
+
0xa
||
broken
(
is_wow64
&&
(
char
*
)
ctx
.
Eip
==
(
char
*
)
code_mem_address
+
0xb
)
||
(
is_wow64
&&
(
char
*
)
ctx
.
Eip
==
(
char
*
)
code_mem_address
+
0xb
)
||
broken
((
char
*
)
ctx
.
Eip
==
(
char
*
)
code_mem_address
+
0xd
)
/* w2008 */
,
"Eip at 0x%x instead of %p
\n
"
,
ctx
.
Eip
,
(
char
*
)
code_mem_address
+
0xa
);
...
...
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