Module: wine
Branch: master
Commit: 9120e9baeb7326aa932e7651904454afa4304489
URL: http://source.winehq.org/git/wine.git/?a=commit;h=9120e9baeb7326aa932e76519…
Author: Roderick Colenbrander <thunderbird2k(a)gmail.com>
Date: Sat Nov 14 17:53:33 2009 +0100
opengl32/tests: fix wglShareLists error messages.
---
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 13e41fd..5c3de1f 100644
--- a/dlls/opengl32/tests/opengl.c
+++ b/dlls/opengl32/tests/opengl.c
@@ -314,7 +314,7 @@ static void test_sharelists(HDC winhdc)
res = wglMakeCurrent(winhdc, hglrc2);
ok(res, "Make current failed\n");
res = wglShareLists(hglrc1, hglrc2);
- todo_wine ok(res, "Sharing display lists with a destination context which has been made current passed\n");
+ todo_wine ok(res, "Sharing display lists with a destination context which has been made current failed\n");
wglMakeCurrent(0, 0);
wglDeleteContext(hglrc2);
}
@@ -325,7 +325,7 @@ static void test_sharelists(HDC winhdc)
if(hglrc3)
{
res = wglShareLists(hglrc3, hglrc1);
- ok(res == FALSE, "Sharing of display lists failed for a context which already shared lists before\n");
+ ok(res == FALSE, "Sharing of display lists passed for a context which already shared lists before\n");
wglDeleteContext(hglrc3);
}
@@ -336,7 +336,7 @@ static void test_sharelists(HDC winhdc)
res = wglMakeCurrent(winhdc, hglrc1);
ok(res, "Make current failed\n");
res = wglShareLists(hglrc1, hglrc2);
- ok(res, "Sharing display lists with a source context which has been made current passed\n");
+ ok(res, "Sharing display lists with a source context which has been made current failed\n");
wglMakeCurrent(0, 0);
wglDeleteContext(hglrc2);
}