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
7310bdb4
Commit
7310bdb4
authored
Aug 28, 2013
by
Huw Davies
Committed by
Alexandre Julliard
Aug 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Mark some tests as exact.
parent
2f20032d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
font.c
dlls/gdi32/tests/font.c
+3
-5
No files found.
dlls/gdi32/tests/font.c
View file @
7310bdb4
...
...
@@ -1704,9 +1704,7 @@ static void test_height( HDC hdc, const struct font_data *fd )
ok
(
match_off_by_1
(
tm
.
tmHeight
,
fd
[
i
].
height
,
fd
[
i
].
exact
),
"%s(%d): tm.tmHeight %d != %d
\n
"
,
fd
[
i
].
face_name
,
fd
[
i
].
requested_height
,
tm
.
tmHeight
,
fd
[
i
].
height
);
ok
(
match_off_by_1
(
tm
.
tmAscent
,
fd
[
i
].
ascent
,
fd
[
i
].
exact
),
"%s(%d): tm.tmAscent %d != %d
\n
"
,
fd
[
i
].
face_name
,
fd
[
i
].
requested_height
,
tm
.
tmAscent
,
fd
[
i
].
ascent
);
ok
(
match_off_by_1
(
tm
.
tmDescent
,
fd
[
i
].
descent
,
fd
[
i
].
exact
),
"%s(%d): tm.tmDescent %d != %d
\n
"
,
fd
[
i
].
face_name
,
fd
[
i
].
requested_height
,
tm
.
tmDescent
,
fd
[
i
].
descent
);
#if 0 /* FIXME: calculation of tmInternalLeading in Wine doesn't match what Windows does */
ok(tm.tmInternalLeading == fd[i].int_leading, "%s(%d): tm.tmInternalLeading %d != %d\n", fd[i].face_name, fd[i].requested_height, tm.tmInternalLeading, fd[i].int_leading);
#endif
ok
(
match_off_by_1
(
tm
.
tmInternalLeading
,
fd
[
i
].
int_leading
,
fd
[
i
].
exact
),
"%s(%d): tm.tmInternalLeading %d != %d
\n
"
,
fd
[
i
].
face_name
,
fd
[
i
].
requested_height
,
tm
.
tmInternalLeading
,
fd
[
i
].
int_leading
);
ok
(
tm
.
tmExternalLeading
==
fd
[
i
].
ext_leading
,
"%s(%d): tm.tmExternalLeading %d != %d
\n
"
,
fd
[
i
].
face_name
,
fd
[
i
].
requested_height
,
tm
.
tmExternalLeading
,
fd
[
i
].
ext_leading
);
}
...
...
@@ -1725,10 +1723,10 @@ static void test_height_selection(void)
{
"Tahoma"
,
-
96
,
FW_NORMAL
,
116
,
96
,
20
,
20
,
0
,
96
,
TRUE
},
{
"Tahoma"
,
-
192
,
FW_NORMAL
,
232
,
192
,
40
,
40
,
0
,
96
,
TRUE
},
{
"Tahoma"
,
12
,
FW_NORMAL
,
12
,
10
,
2
,
2
,
0
,
96
,
TRUE
},
{
"Tahoma"
,
24
,
FW_NORMAL
,
24
,
20
,
4
,
4
,
0
,
96
,
FALS
E
},
{
"Tahoma"
,
24
,
FW_NORMAL
,
24
,
20
,
4
,
4
,
0
,
96
,
TRU
E
},
{
"Tahoma"
,
48
,
FW_NORMAL
,
48
,
40
,
8
,
8
,
0
,
96
,
TRUE
},
{
"Tahoma"
,
96
,
FW_NORMAL
,
96
,
80
,
16
,
17
,
0
,
96
,
FALSE
},
{
"Tahoma"
,
192
,
FW_NORMAL
,
192
,
159
,
33
,
33
,
0
,
96
,
FALS
E
},
{
"Tahoma"
,
192
,
FW_NORMAL
,
192
,
159
,
33
,
33
,
0
,
96
,
TRU
E
},
{
""
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
}
};
HDC
hdc
=
CreateCompatibleDC
(
0
);
...
...
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