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
a21c93cd
Commit
a21c93cd
authored
May 05, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
May 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Check that HeapCreate should ignore checking flags.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1f490ec1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
heap.c
dlls/kernel32/tests/heap.c
+8
-0
No files found.
dlls/kernel32/tests/heap.c
View file @
a21c93cd
...
...
@@ -2435,7 +2435,9 @@ static void test_heap_layout( HANDLE handle, DWORD global_flag, DWORD heap_flags
if
(
global_flag
&
FLG_HEAP_ENABLE_TAGGING
)
heap_flags
|=
HEAP_SHARED
;
if
(
!
(
global_flag
&
FLG_HEAP_PAGE_ALLOCS
))
force_flags
&=
~
(
HEAP_GROWABLE
|
HEAP_PRIVATE
);
todo_wine_if
(
(
heap
->
force_flags
&
~
heap_flags
)
&
(
HEAP_TAIL_CHECKING_ENABLED
|
HEAP_FREE_CHECKING_ENABLED
)
)
ok
(
heap
->
force_flags
==
force_flags
,
"got force_flags %#x
\n
"
,
heap
->
force_flags
);
todo_wine_if
(
(
heap
->
flags
&
~
heap_flags
)
&
(
HEAP_TAIL_CHECKING_ENABLED
|
HEAP_FREE_CHECKING_ENABLED
)
)
ok
(
heap
->
flags
==
heap_flags
,
"got flags %#x
\n
"
,
heap
->
flags
);
if
(
heap
->
flags
&
HEAP_PAGE_ALLOCS
)
...
...
@@ -2508,6 +2510,12 @@ static void test_child_heap( const char *arg )
ret
=
HeapDestroy
(
heap
);
ok
(
ret
,
"HeapDestroy failed, error %lu
\n
"
,
GetLastError
()
);
heap
=
HeapCreate
(
HEAP_TAIL_CHECKING_ENABLED
|
HEAP_FREE_CHECKING_ENABLED
|
HEAP_NO_SERIALIZE
,
0
,
0
);
ok
(
heap
!=
GetProcessHeap
(),
"got unexpected heap
\n
"
);
test_heap_layout
(
heap
,
global_flags
,
heap_flags
|
HEAP_NO_SERIALIZE
|
HEAP_GROWABLE
|
HEAP_PRIVATE
);
ret
=
HeapDestroy
(
heap
);
ok
(
ret
,
"HeapDestroy failed, error %lu
\n
"
,
GetLastError
()
);
heap
=
HeapCreate
(
0
,
0x1000
,
0x10000
);
ok
(
heap
!=
GetProcessHeap
(),
"got unexpected heap
\n
"
);
test_heap_layout
(
heap
,
global_flags
,
heap_flags
|
HEAP_PRIVATE
);
...
...
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