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
f81f7f47
Commit
f81f7f47
authored
Jan 04, 2018
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 04, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mlang/tests: Add a trailing '\n' to ok() calls.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a45f792a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mlang.c
dlls/mlang/tests/mlang.c
+3
-3
No files found.
dlls/mlang/tests/mlang.c
View file @
f81f7f47
...
...
@@ -2683,12 +2683,12 @@ static void test_MapFont(IMLangFontLink *font_link, IMLangFontLink2 *font_link2)
ok
(
ret
==
S_OK
,
"MapFont() failed, hr %#x.
\n
"
,
ret
);
ret
=
IMLangFontLink2_MapFont
(
font_link2
,
hdc
,
codepages
,
0
,
&
font2
);
ok
(
ret
==
S_OK
,
"MapFont() failed, hr %#x.
\n
"
,
ret
);
ok
(
font1
!=
NULL
&&
font2
!=
NULL
,
"expected !NULL/!NULL, got %p/%p"
,
font1
,
font2
);
ok
(
font1
==
font2
,
"expected equal, got not equal"
);
ok
(
font1
!=
NULL
&&
font2
!=
NULL
,
"expected !NULL/!NULL, got %p/%p
\n
"
,
font1
,
font2
);
ok
(
font1
==
font2
,
"expected equal, got not equal
\n
"
);
IMLangFontLink_GetFontCodePages
(
font_link
,
hdc
,
font1
,
&
font_codepages
);
ok
((
codepages
&
(
~
font_codepages
))
!=
0
&&
(
codepages
&
font_codepages
)
!=
0
,
"code pages of font is incorrect"
);
"code pages of font is incorrect
\n
"
);
IMLangFontLink_ResetFontMapping
(
font_link
);
IMLangFontLink2_ResetFontMapping
(
font_link2
);
...
...
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