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
d84077c2
Commit
d84077c2
authored
May 05, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Use win_skip() for missing APIs.
A missing API is a todo in Wine.
parent
25e64b06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
driver.c
dlls/gdi32/tests/driver.c
+3
-3
font.c
dlls/gdi32/tests/font.c
+1
-1
No files found.
dlls/gdi32/tests/driver.c
View file @
d84077c2
...
...
@@ -399,7 +399,7 @@ static void test_D3DKMTCheckVidPnExclusiveOwnership(void)
if
(
!
pD3DKMTCheckVidPnExclusiveOwnership
||
pD3DKMTCheckVidPnExclusiveOwnership
(
NULL
)
==
STATUS_PROCEDURE_NOT_FOUND
)
{
skip
(
"D3DKMTCheckVidPnExclusiveOwnership() is unavailable.
\n
"
);
win_
skip
(
"D3DKMTCheckVidPnExclusiveOwnership() is unavailable.
\n
"
);
return
;
}
...
...
@@ -623,7 +623,7 @@ static void test_D3DKMTSetVidPnSourceOwner(void)
if
(
!
pD3DKMTSetVidPnSourceOwner
||
pD3DKMTSetVidPnSourceOwner
(
&
set_owner_desc
)
==
STATUS_PROCEDURE_NOT_FOUND
)
{
skip
(
"D3DKMTSetVidPnSourceOwner() is unavailable.
\n
"
);
win_
skip
(
"D3DKMTSetVidPnSourceOwner() is unavailable.
\n
"
);
return
;
}
...
...
@@ -650,7 +650,7 @@ static void test_D3DKMTCheckOcclusion(void)
if
(
!
pD3DKMTCheckOcclusion
||
pD3DKMTCheckOcclusion
(
NULL
)
==
STATUS_PROCEDURE_NOT_FOUND
)
{
skip
(
"D3DKMTCheckOcclusion() is unavailable.
\n
"
);
todo_wine
win_
skip
(
"D3DKMTCheckOcclusion() is unavailable.
\n
"
);
return
;
}
...
...
dlls/gdi32/tests/font.c
View file @
d84077c2
...
...
@@ -2750,7 +2750,7 @@ static void test_GdiGetCodePage(void)
if
(
!
pGdiGetCodePage
)
{
skip
(
"GdiGetCodePage not available on this platform
\n
"
);
win_
skip
(
"GdiGetCodePage not available on this platform
\n
"
);
return
;
}
...
...
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