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
51d6a08d
Commit
51d6a08d
authored
Nov 25, 2007
by
Lionel Debroux
Committed by
Alexandre Julliard
Nov 28, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Test more offsets for _aligned_offset_realloc (especially offset > alignment).
parent
3e9fbd89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
0 deletions
+78
-0
heap.c
dlls/msvcrt/tests/heap.c
+78
-0
No files found.
dlls/msvcrt/tests/heap.c
View file @
51d6a08d
...
...
@@ -334,6 +334,84 @@ static void test_aligned(void)
test_aligned_offset_realloc
(
256
,
128
,
32
,
4
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
4
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
4
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
8
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
8
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
16
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
16
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
32
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
32
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
64
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
64
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
96
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
96
);
test_aligned_offset_realloc
(
256
,
512
,
0
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
0
,
112
);
test_aligned_offset_realloc
(
256
,
512
,
4
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
4
,
112
);
test_aligned_offset_realloc
(
256
,
512
,
8
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
8
,
112
);
test_aligned_offset_realloc
(
256
,
512
,
16
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
16
,
112
);
test_aligned_offset_realloc
(
256
,
512
,
32
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
32
,
112
);
test_aligned_offset_realloc
(
256
,
512
,
64
,
112
);
test_aligned_offset_realloc
(
256
,
128
,
64
,
112
);
}
START_TEST
(
heap
)
...
...
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