Module: wine Branch: master Commit: 3d777d6e616b2c04b61caf3ff1180f04eda0d197 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3d777d6e616b2c04b61caf3ff1...
Author: Francois Gouget fgouget@free.fr Date: Tue Feb 24 00:04:40 2009 +0100
opengl32/tests: Replace a couple of trace()s with skip()s.
---
dlls/opengl32/tests/opengl.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/opengl32/tests/opengl.c b/dlls/opengl32/tests/opengl.c index ffef769..49659eb 100644 --- a/dlls/opengl32/tests/opengl.c +++ b/dlls/opengl32/tests/opengl.c @@ -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);