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
b9709021
Commit
b9709021
authored
May 17, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
May 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Use skip() for APIs which are stubs in some drivers.
parent
2cb4fa04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
driver.c
dlls/gdi32/tests/driver.c
+4
-2
No files found.
dlls/gdi32/tests/driver.c
View file @
b9709021
...
...
@@ -399,7 +399,8 @@ static void test_D3DKMTCheckVidPnExclusiveOwnership(void)
if
(
!
pD3DKMTCheckVidPnExclusiveOwnership
||
pD3DKMTCheckVidPnExclusiveOwnership
(
NULL
)
==
STATUS_PROCEDURE_NOT_FOUND
)
{
win_skip
(
"D3DKMTCheckVidPnExclusiveOwnership() is unavailable.
\n
"
);
/* This is a stub in some drivers (e.g. nulldrv) */
skip
(
"D3DKMTCheckVidPnExclusiveOwnership() is unavailable.
\n
"
);
return
;
}
...
...
@@ -623,7 +624,8 @@ static void test_D3DKMTSetVidPnSourceOwner(void)
if
(
!
pD3DKMTSetVidPnSourceOwner
||
pD3DKMTSetVidPnSourceOwner
(
&
set_owner_desc
)
==
STATUS_PROCEDURE_NOT_FOUND
)
{
win_skip
(
"D3DKMTSetVidPnSourceOwner() is unavailable.
\n
"
);
/* This is a stub in some drivers (e.g. nulldrv) */
skip
(
"D3DKMTSetVidPnSourceOwner() is unavailable.
\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