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
decf34e0
Commit
decf34e0
authored
Dec 28, 2017
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add missing todos for 64-bit.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
45c4fc7c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
loader.c
dlls/kernel32/tests/loader.c
+4
-0
No files found.
dlls/kernel32/tests/loader.c
View file @
decf34e0
...
...
@@ -985,24 +985,28 @@ static void test_Loader(void)
nt32
.
OptionalHeader
.
AddressOfEntryPoint
=
0x1000
;
section
.
Characteristics
=
IMAGE_SCN_MEM_READ
|
IMAGE_SCN_CNT_CODE
;
status
=
map_image_section
(
(
IMAGE_NT_HEADERS
*
)
&
nt32
,
__LINE__
);
todo_wine
ok
(
status
==
STATUS_SUCCESS
,
"NtCreateSection error %08x
\n
"
,
status
);
nt32
.
OptionalHeader
.
SizeOfCode
=
0
;
nt32
.
OptionalHeader
.
AddressOfEntryPoint
=
0
;
section
.
Characteristics
=
IMAGE_SCN_MEM_READ
|
IMAGE_SCN_CNT_CODE
|
IMAGE_SCN_MEM_EXECUTE
;
status
=
map_image_section
(
(
IMAGE_NT_HEADERS
*
)
&
nt32
,
__LINE__
);
todo_wine
ok
(
status
==
STATUS_SUCCESS
,
"NtCreateSection error %08x
\n
"
,
status
);
nt32
.
OptionalHeader
.
SizeOfCode
=
0x1000
;
nt32
.
OptionalHeader
.
AddressOfEntryPoint
=
0
;
section
.
Characteristics
=
IMAGE_SCN_MEM_READ
|
IMAGE_SCN_CNT_CODE
;
status
=
map_image_section
(
(
IMAGE_NT_HEADERS
*
)
&
nt32
,
__LINE__
);
todo_wine
ok
(
status
==
STATUS_SUCCESS
,
"NtCreateSection error %08x
\n
"
,
status
);
nt32
.
OptionalHeader
.
SizeOfCode
=
0
;
nt32
.
OptionalHeader
.
AddressOfEntryPoint
=
0
;
section
.
Characteristics
=
IMAGE_SCN_MEM_READ
|
IMAGE_SCN_CNT_CODE
;
status
=
map_image_section
(
(
IMAGE_NT_HEADERS
*
)
&
nt32
,
__LINE__
);
todo_wine
ok
(
status
==
STATUS_SUCCESS
,
"NtCreateSection error %08x
\n
"
,
status
);
}
...
...
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