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
aecf29ae
Commit
aecf29ae
authored
Feb 16, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Feb 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Win9x doesn't ensure the facename is nul terminated. Compare the…
gdi32/tests: Win9x doesn't ensure the facename is nul terminated. Compare the logfont one element at a time.
parent
7cc7ad5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
font.c
dlls/gdi32/tests/font.c
+15
-2
No files found.
dlls/gdi32/tests/font.c
View file @
aecf29ae
...
...
@@ -106,8 +106,21 @@ static void check_font(const char* test, const LOGFONTA* lf, HFONT hfont)
minlen
++
;
minlen
+=
FIELD_OFFSET
(
LOGFONTA
,
lfFaceName
)
+
1
;
ok
(
ret
==
sizeof
(
LOGFONTA
)
||
ret
==
minlen
,
"%s: GetObject returned %d
\n
"
,
test
,
ret
);
ok
(
!
memcmp
(
lf
,
&
getobj_lf
,
FIELD_OFFSET
(
LOGFONTA
,
lfFaceName
)),
"%s: fonts don't match
\n
"
,
test
);
ok
(
!
lstrcmpA
(
lf
->
lfFaceName
,
getobj_lf
.
lfFaceName
),
ok
(
lf
->
lfHeight
==
getobj_lf
.
lfHeight
,
"lfHeight: expect %08x got %08x
\n
"
,
lf
->
lfHeight
,
getobj_lf
.
lfHeight
);
ok
(
lf
->
lfWidth
==
getobj_lf
.
lfWidth
,
"lfWidth: expect %08x got %08x
\n
"
,
lf
->
lfWidth
,
getobj_lf
.
lfWidth
);
ok
(
lf
->
lfEscapement
==
getobj_lf
.
lfEscapement
,
"lfEscapement: expect %08x got %08x
\n
"
,
lf
->
lfEscapement
,
getobj_lf
.
lfEscapement
);
ok
(
lf
->
lfOrientation
==
getobj_lf
.
lfOrientation
,
"lfOrientation: expect %08x got %08x
\n
"
,
lf
->
lfOrientation
,
getobj_lf
.
lfOrientation
);
ok
(
lf
->
lfWeight
==
getobj_lf
.
lfWeight
,
"lfWeight: expect %08x got %08x
\n
"
,
lf
->
lfWeight
,
getobj_lf
.
lfWeight
);
ok
(
lf
->
lfItalic
==
getobj_lf
.
lfItalic
,
"lfItalic: expect %02x got %02x
\n
"
,
lf
->
lfItalic
,
getobj_lf
.
lfItalic
);
ok
(
lf
->
lfUnderline
==
getobj_lf
.
lfUnderline
,
"lfUnderline: expect %02x got %02x
\n
"
,
lf
->
lfUnderline
,
getobj_lf
.
lfUnderline
);
ok
(
lf
->
lfStrikeOut
==
getobj_lf
.
lfStrikeOut
,
"lfStrikeOut: expect %02x got %02x
\n
"
,
lf
->
lfStrikeOut
,
getobj_lf
.
lfStrikeOut
);
ok
(
lf
->
lfCharSet
==
getobj_lf
.
lfCharSet
,
"lfCharSet: expect %02x got %02x
\n
"
,
lf
->
lfCharSet
,
getobj_lf
.
lfCharSet
);
ok
(
lf
->
lfOutPrecision
==
getobj_lf
.
lfOutPrecision
,
"lfOutPrecision: expect %02x got %02x
\n
"
,
lf
->
lfOutPrecision
,
getobj_lf
.
lfOutPrecision
);
ok
(
lf
->
lfClipPrecision
==
getobj_lf
.
lfClipPrecision
,
"lfClipPrecision: expect %02x got %02x
\n
"
,
lf
->
lfClipPrecision
,
getobj_lf
.
lfClipPrecision
);
ok
(
lf
->
lfQuality
==
getobj_lf
.
lfQuality
,
"lfQuality: expect %02x got %02x
\n
"
,
lf
->
lfQuality
,
getobj_lf
.
lfQuality
);
ok
(
lf
->
lfPitchAndFamily
==
getobj_lf
.
lfPitchAndFamily
,
"lfPitchAndFamily: expect %02x got %02x
\n
"
,
lf
->
lfPitchAndFamily
,
getobj_lf
.
lfPitchAndFamily
);
ok
(
!
lstrcmpA
(
lf
->
lfFaceName
,
getobj_lf
.
lfFaceName
)
||
broken
(
!
memcmp
(
lf
->
lfFaceName
,
getobj_lf
.
lfFaceName
,
LF_FACESIZE
-
1
)),
/* win9x doesn't ensure '\0' termination */
"%s: font names don't match: %s != %s
\n
"
,
test
,
lf
->
lfFaceName
,
getobj_lf
.
lfFaceName
);
}
...
...
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