Module: wine Branch: master Commit: c3f6f96df43e859c03b382ccb4f5b02ed23e9628 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c3f6f96df43e859c03b382ccb4...
Author: Austin English austinenglish@gmail.com Date: Mon Oct 17 15:25:21 2011 -0700
d3d9/tests: Only skip the visual tests if d3d cannot be initialized on Windows.
---
dlls/d3d9/tests/visual.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index 972f8d6..75132ff 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -174,7 +174,7 @@ static IDirect3DDevice9 *init_d3d9(void) d3d9_ptr = d3d9_create(D3D_SDK_VERSION); if (!d3d9_ptr) { - skip("could not create D3D9\n"); + win_skip("could not create D3D9\n"); return NULL; }