Commit ff6f7a57 authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32/tests: Skip test that depends on Tahoma if it isn't installed.

parent 2193a701
......@@ -2328,6 +2328,12 @@ static void test_GetTextFace(void)
HDC dc;
int n;
if(!is_font_installed("Tahoma"))
{
skip("Tahoma is not installed so skipping this test\n");
return;
}
/* 'A' case. */
memcpy(fA.lfFaceName, faceA, sizeof faceA);
f = CreateFontIndirectA(&fA);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment