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
fc1f50c5
Commit
fc1f50c5
authored
Mar 12, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite/tests: Test font set properties that should be always available.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2bc442aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
font.c
dlls/dwrite/tests/font.c
+7
-0
No files found.
dlls/dwrite/tests/font.c
View file @
fc1f50c5
...
...
@@ -9512,6 +9512,13 @@ static void test_fontsetbuilder(void)
hr
=
IDWriteFontSet_GetPropertyValues
(
fontset
,
0
,
id
,
&
exists
,
&
values
);
ok
(
hr
==
S_OK
,
"Failed to get property value, hr %#x.
\n
"
,
hr
);
if
(
id
==
DWRITE_FONT_PROPERTY_ID_WEIGHT
||
id
==
DWRITE_FONT_PROPERTY_ID_STRETCH
||
id
==
DWRITE_FONT_PROPERTY_ID_STYLE
)
{
todo_wine
ok
(
exists
,
"Property %u expected to exist.
\n
"
,
id
);
}
if
(
!
exists
)
continue
;
...
...
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