Author: jimtabor
Date: Sun Jun 15 21:54:12 2014
New Revision: 63603
URL:
http://svn.reactos.org/svn/reactos?rev=63603&view=rev
Log:
- Update wine test to 1.7.20.
Modified:
trunk/rostests/winetests/user32/text.c
Modified: trunk/rostests/winetests/user32/text.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/user32/text.c?r…
==============================================================================
--- trunk/rostests/winetests/user32/text.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/user32/text.c [iso-8859-1] Sun Jun 15 21:54:12 2014
@@ -564,6 +564,10 @@
textheight = DrawTextA(hdc, wordbreak_text, -1, &rect, DT_CALCRECT |
DT_WORDBREAK);
ok(textheight == heightcheck * 2, "Got unexpected textheight %d, expected
%d.\n",
textheight, heightcheck * 2);
+ SetRect(&rect, 0, 0, 1, 1);
+ textheight = DrawTextA(hdc, wordbreak_text, -1, &rect, DT_CALCRECT | DT_WORDBREAK
| DT_EDITCONTROL);
+ ok(textheight >= heightcheck * 6, "Got unexpected textheight %d, expected at
least %d.\n",
+ textheight, heightcheck * 6);
SetRect(&rect, 0, 0, 1, 1);
heightcheck = DrawTextW(hdc, wordbreak_textW, -1, &rect, DT_CALCRECT);
@@ -571,6 +575,10 @@
textheight = DrawTextW(hdc, wordbreak_textW, -1, &rect, DT_CALCRECT |
DT_WORDBREAK);
ok(textheight == heightcheck * 2, "Got unexpected textheight %d, expected
%d.\n",
textheight, heightcheck * 2);
+ SetRect(&rect, 0, 0, 1, 1);
+ textheight = DrawTextW(hdc, wordbreak_textW, -1, &rect, DT_CALCRECT |
DT_WORDBREAK | DT_EDITCONTROL);
+ ok(textheight >= heightcheck * 6, "Got unexpected textheight %d, expected at
least %d.\n",
+ textheight, heightcheck * 6);
SelectObject(hdc, hOldFont);
ret = DeleteObject(hFont);