user32/tests/text: remove win9x hacks

Austin English austinenglish at gmail.com
Tue Jul 26 21:15:21 CDT 2011


https://testbot.winehq.org/JobDetails.pl?Key=12911

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/user32/tests/text.c b/dlls/user32/tests/text.c
index b45a312..1874b15 100644
--- a/dlls/user32/tests/text.c
+++ b/dlls/user32/tests/text.c
@@ -114,13 +114,7 @@ static void test_DrawTextCalcRect(void)
     heightcheck = textheight = DrawTextExA(hdc, text, 0, &rect, DT_CALCRECT, NULL );
     ok( !EMPTY(rect) && !MODIFIED(rect),
         "rectangle should NOT be empty got %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
-    if (textheight != 0)  /* Windows 98 */
-    {
-        win_skip("XP conformity failed, skipping XP tests. Probably win9x\n");
-        conform_xp = FALSE;
-    }
-    else
-        ok(textheight==0,"Got textheight from DrawTextExA\n");
+    ok(textheight==0,"Got textheight from DrawTextExA\n");
 
     SetRect( &rect, 10,10, 100, 100);
     textheight = DrawTextA(hdc, text, 0, &rect, DT_CALCRECT);


More information about the wine-patches mailing list