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

oldstable
Francois Gouget 2009-02-24 00:04:40 +01:00 committed by Alexandre Julliard
parent 08637ac368
commit 3d777d6e61
1 changed files with 2 additions and 2 deletions

View File

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