Commit b9709021 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdi32/tests: Use skip() for APIs which are stubs in some drivers.

parent 2cb4fa04
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment