On Sat, Mar 22, 2014 at 6:09 PM, Dmitry Timoshkov <dmitry@baikal.ru> wrote:
Austin English <austinenglish@gmail.com> wrote:

> +    status = GdipCreateFontFamilyFromName(Arial, NULL, &family);
> +    if (status == FontFamilyNotFound)
> +    {
> +        skip("Arial not installed\n");
> +        return;
> +    }

Why do you need this? This test doesn't depend on Arial font presence.

--
Dmitry.

dlls/gdiplus/tests/font.c

font.c:784: Test failed: wrong face name Liberation Sans
font.c:794: Test failed: wrong face name Liberation Sans

784 ok(!lstrcmpA(lf.lfFaceName, "Arial"), "wrong face name %s\n", lf.lfFaceName);
...
794 ok(!lstrcmpA(lf.lfFaceName, "Arial"), "wrong face name %s\n", lf.lfFaceName);

--
-Austin