From 05c50725db22d15a758cfd7c8152d1d6fdfd61e5 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Thu, 23 Apr 2009 16:07:25 +0200 Subject: [PATCH] gdi32/tests: Fix a test failure on NT4. --- dlls/gdi32/tests/mapping.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/gdi32/tests/mapping.c b/dlls/gdi32/tests/mapping.c index ffb92cbfe92..03428174617 100644 --- a/dlls/gdi32/tests/mapping.c +++ b/dlls/gdi32/tests/mapping.c @@ -161,7 +161,9 @@ static void test_world_transform(void) xform.eDx = 0.0f; xform.eDy = 0.0f; ret = SetWorldTransform(hdc, &xform); - ok(!ret, "SetWorldTransform should fail with an invalid xform\n"); + ok(!ret || + broken(ret), /* NT4 */ + "SetWorldTransform should fail with an invalid xform\n"); xform.eM11 = 20.0f; xform.eM12 = 0.0f; -- 2.11.4.GIT