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
8103907d
Commit
8103907d
authored
Sep 01, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Also remove stack pointer checks on 64-bit.
parent
0cea9c78
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
process.c
dlls/kernel32/tests/process.c
+0
-2
No files found.
dlls/kernel32/tests/process.c
View file @
8103907d
...
@@ -3261,7 +3261,6 @@ static void test_SuspendProcessNewThread(void)
...
@@ -3261,7 +3261,6 @@ static void test_SuspendProcessNewThread(void)
ok
(
!
ctx
.
R13
,
"r13 is not zero %Ix
\n
"
,
ctx
.
R13
);
ok
(
!
ctx
.
R13
,
"r13 is not zero %Ix
\n
"
,
ctx
.
R13
);
ok
(
!
ctx
.
R14
,
"r14 is not zero %Ix
\n
"
,
ctx
.
R14
);
ok
(
!
ctx
.
R14
,
"r14 is not zero %Ix
\n
"
,
ctx
.
R14
);
ok
(
!
ctx
.
R15
,
"r15 is not zero %Ix
\n
"
,
ctx
.
R15
);
ok
(
!
ctx
.
R15
,
"r15 is not zero %Ix
\n
"
,
ctx
.
R15
);
ok
(
!
((
ctx
.
Rsp
+
0x28
)
&
0xfff
),
"rsp is not at top of stack page %Ix
\n
"
,
ctx
.
Rsp
);
ok
(
ctx
.
EFlags
==
0x200
,
"wrong flags %08lx
\n
"
,
ctx
.
EFlags
);
ok
(
ctx
.
EFlags
==
0x200
,
"wrong flags %08lx
\n
"
,
ctx
.
EFlags
);
ok
(
ctx
.
MxCsr
==
0x1f80
,
"wrong mxcsr %08lx
\n
"
,
ctx
.
MxCsr
);
ok
(
ctx
.
MxCsr
==
0x1f80
,
"wrong mxcsr %08lx
\n
"
,
ctx
.
MxCsr
);
ok
(
ctx
.
FltSave
.
ControlWord
==
0x27f
,
"wrong control %08x
\n
"
,
ctx
.
FltSave
.
ControlWord
);
ok
(
ctx
.
FltSave
.
ControlWord
==
0x27f
,
"wrong control %08x
\n
"
,
ctx
.
FltSave
.
ControlWord
);
...
@@ -3410,7 +3409,6 @@ static void test_SuspendProcessState(void)
...
@@ -3410,7 +3409,6 @@ static void test_SuspendProcessState(void)
ok
(
!
ctx
.
R13
,
"r13 is not zero %Ix
\n
"
,
ctx
.
R13
);
ok
(
!
ctx
.
R13
,
"r13 is not zero %Ix
\n
"
,
ctx
.
R13
);
ok
(
!
ctx
.
R14
,
"r14 is not zero %Ix
\n
"
,
ctx
.
R14
);
ok
(
!
ctx
.
R14
,
"r14 is not zero %Ix
\n
"
,
ctx
.
R14
);
ok
(
!
ctx
.
R15
,
"r15 is not zero %Ix
\n
"
,
ctx
.
R15
);
ok
(
!
ctx
.
R15
,
"r15 is not zero %Ix
\n
"
,
ctx
.
R15
);
ok
(
!
((
ctx
.
Rsp
+
0x28
)
&
0xfff
),
"rsp is not at top of stack page %Ix
\n
"
,
ctx
.
Rsp
);
ok
(
ctx
.
EFlags
==
0x200
,
"wrong flags %08lx
\n
"
,
ctx
.
EFlags
);
ok
(
ctx
.
EFlags
==
0x200
,
"wrong flags %08lx
\n
"
,
ctx
.
EFlags
);
ok
(
ctx
.
MxCsr
==
0x1f80
,
"wrong mxcsr %08lx
\n
"
,
ctx
.
MxCsr
);
ok
(
ctx
.
MxCsr
==
0x1f80
,
"wrong mxcsr %08lx
\n
"
,
ctx
.
MxCsr
);
ok
(
ctx
.
FltSave
.
ControlWord
==
0x27f
,
"wrong control %08x
\n
"
,
ctx
.
FltSave
.
ControlWord
);
ok
(
ctx
.
FltSave
.
ControlWord
==
0x27f
,
"wrong control %08x
\n
"
,
ctx
.
FltSave
.
ControlWord
);
...
...
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