From 08637ac368baa1ad25ddbd83aa7b8f237c4dd32c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 24 Feb 2009 00:04:48 +0100 Subject: [PATCH] opengl32/tests: Use win_skip() to skip over unimplemented functionality. --- dlls/opengl32/tests/opengl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/opengl32/tests/opengl.c b/dlls/opengl32/tests/opengl.c index a3ac3af7e6d..ffef769d95f 100644 --- a/dlls/opengl32/tests/opengl.c +++ b/dlls/opengl32/tests/opengl.c @@ -311,7 +311,7 @@ static void test_colorbits(HDC hdc) if (!pwglChoosePixelFormatARB) { - skip("wglChoosePixelFormatARB is not available\n"); + win_skip("wglChoosePixelFormatARB is not available\n"); return; } @@ -345,7 +345,7 @@ static void test_gdi_dbuf(HDC hdc) if (!pwglGetPixelFormatAttribivARB) { - skip("wglGetPixelFormatAttribivARB is not available\n"); + win_skip("wglGetPixelFormatAttribivARB is not available\n"); 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 */ if (!pwglGetExtensionsStringARB) { - skip("wglGetExtensionsStringARB is not available\n"); + win_skip("wglGetExtensionsStringARB is not available\n"); return; }