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

Alexandre Julliard julliard at winehq.org
Tue Feb 24 10:21:19 CST 2009


Module: wine
Branch: master
Commit: 08637ac368baa1ad25ddbd83aa7b8f237c4dd32c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=08637ac368baa1ad25ddbd83aa7b8f237c4dd32c

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Feb 24 00:04:48 2009 +0100

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

---

 dlls/opengl32/tests/opengl.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/opengl32/tests/opengl.c b/dlls/opengl32/tests/opengl.c
index a3ac3af..ffef769 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;
         }
 




More information about the wine-cvs mailing list