From: Bernhard Übelacker bernhardu@mailbox.org
The call to NtGdiMakeFontDir fails just below Windows 10-1607, therefore this test fails in Windows 10-1607 and above.
Followup of 5a6a75a5ff. --- dlls/gdi32/tests/font.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c index f4ca6aeffb6..233a7d3a973 100644 --- a/dlls/gdi32/tests/font.c +++ b/dlls/gdi32/tests/font.c @@ -6117,8 +6117,6 @@ static void test_CreateScalableFontResource(void) ok( !ret, "got %lx\n", ret ); ret = pNtGdiMakeFontDir( 0, buffer, sizeof(*fontdir), nt_name.Buffer, 0 ); ok( !ret, "got %lx\n", ret ); - ret = pNtGdiMakeFontDir( 0, buffer, sizeof(*fontdir), nt_name.Buffer, nt_name.Length + 6 ); - ok( !ret, "got %lx\n", ret ); ret = pNtGdiMakeFontDir( 0, buffer, sizeof(*fontdir), nt_name.Buffer, nt_name.Length + 2 ); ok( ret, "NtGdiMakeFontDir failed\n" ); ok( fontdir->dfSize == 0x95, "wrong size %lx\n", fontdir->dfSize );