opengl32/tests: Use win_skip() to skip over unimplemented functionality.

This commit is contained in:
Francois Gouget 2009-02-24 00:04:48 +01:00 committed by Alexandre Julliard
parent 77a3cffb1b
commit 08637ac368
1 changed files with 3 additions and 3 deletions

View File

@ -311,7 +311,7 @@ static void test_colorbits(HDC hdc)
if (!pwglChoosePixelFormatARB) if (!pwglChoosePixelFormatARB)
{ {
skip("wglChoosePixelFormatARB is not available\n"); win_skip("wglChoosePixelFormatARB is not available\n");
return; return;
} }
@ -345,7 +345,7 @@ static void test_gdi_dbuf(HDC hdc)
if (!pwglGetPixelFormatAttribivARB) if (!pwglGetPixelFormatAttribivARB)
{ {
skip("wglGetPixelFormatAttribivARB is not available\n"); win_skip("wglGetPixelFormatAttribivARB is not available\n");
return; return;
} }
@ -595,7 +595,7 @@ START_TEST(opengl)
/* The lack of wglGetExtensionsStringARB in general means broken software rendering or the lack of decent OpenGL support, skip tests in such cases */ /* The lack of wglGetExtensionsStringARB in general means broken software rendering or the lack of decent OpenGL support, skip tests in such cases */
if (!pwglGetExtensionsStringARB) if (!pwglGetExtensionsStringARB)
{ {
skip("wglGetExtensionsStringARB is not available\n"); win_skip("wglGetExtensionsStringARB is not available\n");
return; return;
} }