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
7a76ae1a
Commit
7a76ae1a
authored
Jan 06, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Replace an '#if 0' with an 'if (0)'.
parent
97422b15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
font.c
dlls/gdi32/tests/font.c
+2
-3
No files found.
dlls/gdi32/tests/font.c
View file @
7a76ae1a
...
...
@@ -668,10 +668,9 @@ todo_wine {
kd
[
i
].
otmMacAscent
,
otm
.
otmMacAscent
);
ok
(
kd
[
i
].
otmMacDescent
==
otm
.
otmMacDescent
,
"expected %d, got %d
\n
"
,
kd
[
i
].
otmMacDescent
,
otm
.
otmMacDescent
);
#if 0 /* this one
succeeds due to expected 0, enable it when removing todo */
ok(kd[i].otmMacLineGap == otm.otmMacLineGap, "expected %u, got %u\n",
/* FIXME: this one sometimes
succeeds due to expected 0, enable it when removing todo */
if
(
0
)
ok
(
kd
[
i
].
otmMacLineGap
==
otm
.
otmMacLineGap
,
"expected %u, got %u
\n
"
,
kd
[
i
].
otmMacLineGap
,
otm
.
otmMacLineGap
);
#endif
ok
(
kd
[
i
].
otmusMinimumPPEM
==
otm
.
otmusMinimumPPEM
,
"expected %u, got %u
\n
"
,
kd
[
i
].
otmusMinimumPPEM
,
otm
.
otmusMinimumPPEM
);
}
...
...
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