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
be69977c
Commit
be69977c
authored
Oct 26, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite/tests: Fix recently inroduced test failure.
parent
1ade6769
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
font.c
dlls/dwrite/tests/font.c
+5
-1
No files found.
dlls/dwrite/tests/font.c
View file @
be69977c
...
...
@@ -1200,8 +1200,12 @@ static void test_CreateCustomFontFileReference(void)
IDWriteFontFace_Release
(
face2
);
/* file was created with different factory */
face2
=
NULL
;
hr
=
IDWriteFactory_CreateFontFace
(
factory2
,
face_type
,
1
,
&
file
,
0
,
DWRITE_FONT_SIMULATIONS_NONE
,
&
face2
);
ok
(
hr
==
E_INVALIDARG
,
"got 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
if
(
face2
)
IDWriteFontFace_Release
(
face2
);
file2
=
NULL
;
hr
=
IDWriteFactory_CreateCustomFontFileReference
(
factory
,
&
fontrsrc
,
sizeof
(
HRSRC
),
&
rloader
,
&
file2
);
...
...
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