Commit 3d777d6e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

opengl32/tests: Replace a couple of trace()s with skip()s.

parent 08637ac3
...@@ -613,12 +613,12 @@ START_TEST(opengl) ...@@ -613,12 +613,12 @@ START_TEST(opengl)
if(strstr(wgl_extensions, "WGL_ARB_make_current_read")) if(strstr(wgl_extensions, "WGL_ARB_make_current_read"))
test_make_current_read(hdc); test_make_current_read(hdc);
else else
trace("WGL_ARB_make_current_read not supported, skipping test\n"); skip("WGL_ARB_make_current_read not supported, skipping test\n");
if(strstr(wgl_extensions, "WGL_ARB_pbuffer")) if(strstr(wgl_extensions, "WGL_ARB_pbuffer"))
test_pbuffers(hdc); test_pbuffers(hdc);
else else
trace("WGL_ARB_pbuffer not supported, skipping pbuffer test\n"); skip("WGL_ARB_pbuffer not supported, skipping pbuffer test\n");
cleanup: cleanup:
ReleaseDC(hwnd, hdc); ReleaseDC(hwnd, hdc);
......
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