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
b2af5195
Commit
b2af5195
authored
Apr 02, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Remove a no longer needed shortcut in CreateScalableFontResource test.
parent
a8424546
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
font.c
dlls/gdi32/tests/font.c
+1
-4
No files found.
dlls/gdi32/tests/font.c
View file @
b2af5195
...
...
@@ -4003,9 +4003,6 @@ static void test_CreateScalableFontResource(void)
todo_wine
ok
(
!
ret
,
"RemoveFontResourceEx() should fail
\n
"
);
/* FIXME: since CreateScalableFontResource is a stub further testing is impossible */
if
(
ret
)
return
;
/* test public font resource */
SetLastError
(
0xdeadbeef
);
ret
=
CreateScalableFontResource
(
0
,
fot_name
,
ttf_name
,
NULL
);
...
...
@@ -4022,11 +4019,11 @@ todo_wine
ok
(
ret
,
"font wine_test should be enumerated
\n
"
);
ret
=
pRemoveFontResourceExA
(
fot_name
,
FR_PRIVATE
,
0
);
todo_wine
ok
(
!
ret
,
"RemoveFontResourceEx() with not matching flags should fail
\n
"
);
SetLastError
(
0xdeadbeef
);
ret
=
pRemoveFontResourceExA
(
fot_name
,
0
,
0
);
todo_wine
ok
(
ret
,
"RemoveFontResourceEx() error %d
\n
"
,
GetLastError
());
ret
=
is_truetype_font_installed
(
"wine_test"
);
...
...
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