Huw Davies : gdi32/tests: Skip the tests if the pen type is not supported.
Module: wine Branch: master Commit: 404b820289163374a2980cc0a2d1e0699d0c9874 URL: http://source.winehq.org/git/wine.git/?a=commit;h=404b820289163374a2980cc0a2... Author: Huw Davies <huw(a)codeweavers.com> Date: Tue Jun 21 10:04:26 2011 +0100 gdi32/tests: Skip the tests if the pen type is not supported. --- dlls/gdi32/tests/pen.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/dlls/gdi32/tests/pen.c b/dlls/gdi32/tests/pen.c index db0b60b..d7819a5 100644 --- a/dlls/gdi32/tests/pen.c +++ b/dlls/gdi32/tests/pen.c @@ -81,7 +81,11 @@ static void test_logpen(void) lp.lopnColor = pen[i].color; SetLastError(0xdeadbeef); hpen = CreatePenIndirect(&lp); - ok(hpen != 0, "CreatePen error %d\n", GetLastError()); + if(hpen == 0 && GetLastError() == ERROR_INVALID_PARAMETER) + { + win_skip("No support for pen style %u (%d)\n", pen[i].style, i); + continue; + } obj_type = GetObjectType(hpen); ok(obj_type == OBJ_PEN, "wrong object type %u\n", obj_type);
participants (1)
-
Alexandre Julliard