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:
Alex Henrie 2022-01-09 20:45:04 -07:00 committed by Alexandre Julliard
parent 58bf1112df
commit 524dbe4bef
1 changed files with 2 additions and 1 deletions

View File

@ -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
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",
context, error[e].len, error[e].start, areaWidth, error[e].GetTextExtentExPointWWidth);
}