gdi32/tests: Trace the invalid height in test_max_height().

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-04-27 15:20:03 +02:00 committed by Alexandre Julliard
parent cdb9a2748b
commit 0519aec310
1 changed files with 2 additions and 0 deletions

View File

@ -6523,6 +6523,7 @@ static void test_max_height(void)
/* test an invalid value */
for (i = 0; i < ARRAY_SIZE(invalid_height); i++) {
winetest_push_context("height=%ld", invalid_height[i]);
lf.lfHeight = invalid_height[i];
hfont = CreateFontIndirectA(&lf);
hfont_old = SelectObject(hdc, hfont);
@ -6534,6 +6535,7 @@ static void test_max_height(void)
ok(tm.tmAveCharWidth == tm1.tmAveCharWidth,
"expected 1 ppem value (%ld), got %ld\n", tm1.tmAveCharWidth, tm.tmAveCharWidth);
DeleteObject(SelectObject(hdc, hfont_old));
winetest_pop_context();
}
ReleaseDC(NULL, hdc);