gdi32/tests: Mark a GetTextExtentPointW test as broken on Windows 10.
Fixes a testbot failure. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
58bf1112df
commit
524dbe4bef
|
@ -2457,7 +2457,8 @@ static void testJustification(const char *context, HDC hdc, PCSTR str, RECT *cli
|
||||||
{
|
{
|
||||||
/* The width returned by GetTextExtentPoint32() is exactly the same
|
/* The width returned by GetTextExtentPoint32() is exactly the same
|
||||||
returned by GetTextExtentExPointW() - see dlls/gdi32/font.c */
|
returned by GetTextExtentExPointW() - see dlls/gdi32/font.c */
|
||||||
ok(error[e].GetTextExtentExPointWWidth == areaWidth,
|
ok(error[e].GetTextExtentExPointWWidth == areaWidth ||
|
||||||
|
broken(abs(areaWidth - error[e].GetTextExtentExPointWWidth) <= 2) /* win10 */,
|
||||||
"%s: GetTextExtentPointW() for \"%.*s\" should have returned a width of %d, not %d.\n",
|
"%s: GetTextExtentPointW() for \"%.*s\" should have returned a width of %d, not %d.\n",
|
||||||
context, error[e].len, error[e].start, areaWidth, error[e].GetTextExtentExPointWWidth);
|
context, error[e].len, error[e].start, areaWidth, error[e].GetTextExtentExPointWWidth);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue