gdi32: Add a GetTextMetrics test, make it pass under Wine

Lei Zhang thestig at google.com
Fri Mar 9 14:02:57 CST 2007


I tested it out on a couple machines and found many failure cases.
(output attached) As a sanity check, I copied the deja vu family of
fonts to a windows box and they passed the tests there.

On 3/9/07, Dmitry Timoshkov <dmitry at codeweavers.com> wrote:
> Hello,
>
> this patch should partially resolve a problem reported in the bug 5783.
>
> In Wine GetTextMetricsW returns wrong tmFirstChar/tmLastChar, and
> GetFontUnicodeRanges returns wrong ranges for fonts with SYMBOL_CHARSET.
>
> Changelog:
>     gdi32: Add a GetTextMetrics test, make it pass under Wine.
>
> ---
>  dlls/gdi32/font.c       |    9 ++-
>  dlls/gdi32/freetype.c   |    4 +-
>  dlls/gdi32/tests/font.c |  141 ++++++++++++++++++++++++++++++++++++++++++++++-
>  3 files changed, 149 insertions(+), 5 deletions(-)
>
> diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c
> index 1b1d8b4..785a990 100644
> --- a/dlls/gdi32/font.c
> +++ b/dlls/gdi32/font.c
> @@ -287,10 +287,12 @@ static void FONT_TextMetricWToA(const TEXTMETRICW *ptmW, LPTEXTMETRICA ptmA )
>      ptmA->tmOverhang = ptmW->tmOverhang;
>      ptmA->tmDigitizedAspectX = ptmW->tmDigitizedAspectX;
>      ptmA->tmDigitizedAspectY = ptmW->tmDigitizedAspectY;
> -    ptmA->tmFirstChar = ptmW->tmFirstChar > 255 ? 255 : ptmW->tmFirstChar;
> +    ptmA->tmBreakChar = ptmW->tmBreakChar > 255 ? 255 : ptmW->tmBreakChar;
> +    /* This appears to be what Windows does */
> +    ptmA->tmFirstChar = ptmW->tmBreakChar;
> +    if (ptmA->tmFirstChar >= 2) ptmA->tmFirstChar -= 2;
>      ptmA->tmLastChar = ptmW->tmLastChar > 255 ? 255 : ptmW->tmLastChar;
>      ptmA->tmDefaultChar = ptmW->tmDefaultChar > 255 ? 255 : ptmW->tmDefaultChar;
> -    ptmA->tmBreakChar = ptmW->tmBreakChar > 255 ? 255 : ptmW->tmBreakChar;
>      ptmA->tmItalic = ptmW->tmItalic;
>      ptmA->tmUnderlined = ptmW->tmUnderlined;
>      ptmA->tmStruckOut = ptmW->tmStruckOut;
> @@ -1366,6 +1368,9 @@ BOOL WINAPI GetTextMetricsW( HDC hdc, TEXTMETRICW *metrics )
>      /* device layer returns values in device units
>       * therefore we have to convert them to logical */
>
> +        metrics->tmDigitizedAspectX = GetDeviceCaps(hdc, LOGPIXELSX);
> +        metrics->tmDigitizedAspectY = GetDeviceCaps(hdc, LOGPIXELSY);
> +
>  #define WDPTOLP(x) ((x<0)?                                     \
>                 (-abs(INTERNAL_XDSTOWS(dc, (x)))):              \
>                 (abs(INTERNAL_XDSTOWS(dc, (x)))))
> diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
> index db990fa..03adfe5 100644
> --- a/dlls/gdi32/freetype.c
> +++ b/dlls/gdi32/freetype.c
> @@ -4480,7 +4480,7 @@ static DWORD get_font_unicode_ranges(FT_Face face, GLYPHSET *gs)
>  {
>      DWORD num_ranges = 0;
>
> -    if (face->charmap->encoding == FT_ENCODING_UNICODE && pFT_Get_First_Char)
> +    if (pFT_Get_First_Char)
>      {
>          FT_UInt glyph_code;
>          FT_ULong char_code, char_code_prev;
> @@ -4488,7 +4488,7 @@ static DWORD get_font_unicode_ranges(FT_Face face, GLYPHSET *gs)
>          glyph_code = 0;
>          char_code_prev = char_code = pFT_Get_First_Char(face, &glyph_code);
>
> -        TRACE("face encoding FT_ENCODING_UNICODE, number of glyphs %ld, first glyph %u, first char %04lx\n",
> +        TRACE("number of glyphs %ld, first glyph %u, first char %04lx\n",
>                 face->num_glyphs, glyph_code, char_code);
>
>          if (!glyph_code) return 0;
> diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c
> index 43e9c3a..a996ff0 100644
> --- a/dlls/gdi32/tests/font.c
> +++ b/dlls/gdi32/tests/font.c
> @@ -408,7 +408,7 @@ static void test_GdiGetCharDimensions(void)
>
>      if (!pGdiGetCharDimensions)
>      {
> -        skip("GetFontUnicodeRanges not available on this platform\n");
> +        skip("GdiGetCharDimensions not available on this platform\n");
>          return;
>      }
>
> @@ -1149,6 +1149,7 @@ static void test_GetFontUnicodeRanges(void)
>
>      size = pGetFontUnicodeRanges(hdc, gs);
>      ok(size, "GetFontUnicodeRanges failed\n");
> +    ok(gs->cRanges != 0, "GetFontUnicodeRanges returned empty ranges\n");
>  #if 0
>      for (i = 0; i < gs->cRanges; i++)
>          trace("%03d wcLow %04x cGlyphs %u\n", i, gs->ranges[i].wcLow, gs->ranges[i].cGlyphs);
> @@ -1397,6 +1398,143 @@ else
>      ReleaseDC(0, hdc);
>  }
>
> +static void test_text_metrics(const LOGFONTA *lf)
> +{
> +    HDC hdc;
> +    HFONT hfont, hfont_old;
> +    TEXTMETRICA tmA;
> +    TEXTMETRICW tmW;
> +    UINT first_unicode_char = 0, last_unicode_char = 0;
> +    INT ret, test_char;
> +    const char *font_name = lf->lfFaceName;
> +
> +    trace("Testing font metrics for %s, charset %d\n", font_name, lf->lfCharSet);
> +
> +    hdc = GetDC(0);
> +
> +    SetLastError(0xdeadbeef);
> +    hfont = CreateFontIndirectA(lf);
> +    ok(hfont != 0, "CreateFontIndirect error %u\n", GetLastError());
> +
> +    hfont_old = SelectObject(hdc, hfont);
> +
> +    if (pGetFontUnicodeRanges)
> +    {
> +        DWORD size;
> +        GLYPHSET *gs;
> +
> +        size = pGetFontUnicodeRanges(hdc, NULL);
> +        ok(size, "GetFontUnicodeRanges failed unexpectedly\n");
> +
> +        gs = HeapAlloc(GetProcessHeap(), 0, size);
> +
> +        size = pGetFontUnicodeRanges(hdc, gs);
> +        ok(size, "GetFontUnicodeRanges failed\n");
> +        ok(gs->cRanges != 0, "GetFontUnicodeRanges returned empty ranges\n");
> +
> +        first_unicode_char = gs->ranges[0].wcLow;
> +        last_unicode_char = gs->ranges[gs->cRanges - 1].wcLow + gs->ranges[gs->cRanges - 1].cGlyphs - 1;
> +        trace("for %s first char %x, last char %x\n", font_name,
> +               first_unicode_char, last_unicode_char);
> +
> +        HeapFree(GetProcessHeap(), 0, gs);
> +    }
> +
> +    SetLastError(0xdeadbeef);
> +    ret = GetTextMetricsA(hdc, &tmA);
> +    ok(ret, "GetTextMetricsA error %u\n", GetLastError());
> +
> +    trace("A: first %x, last %x, default %x, break %x\n",
> +          tmA.tmFirstChar, tmA.tmLastChar, tmA.tmDefaultChar, tmA.tmBreakChar);
> +
> +    SetLastError(0xdeadbeef);
> +    ret = GetTextMetricsW(hdc, &tmW);
> +    ok(ret, "GetTextMetricsA error %u\n", GetLastError());
> +
> +    trace("W: first %x, last %x, default %x, break %x\n",
> +          tmW.tmFirstChar, tmW.tmLastChar, tmW.tmDefaultChar, tmW.tmBreakChar);
> +
> +    /* This appears to be what Windows does */
> +    test_char = tmW.tmBreakChar;
> +    if (test_char >= 2) test_char -= 2;
> +    if (test_char > 255) test_char = 255;
> +    ok(tmA.tmFirstChar == test_char, "tmFirstChar for %s %02x != %02x\n",
> +       font_name, tmA.tmFirstChar, test_char);
> +
> +    /* This test failes for Marlett, Wingdings 2 and Wingdings 3, but succeeds
> +     * for all other 327 truetype fonts on my system.
> +     */
> +#if 0
> +    test_char = tmW.tmLastChar > 255 ? 255 : tmW.tmLastChar;
> +    ok(tmA.tmLastChar == test_char, "tmLastChar for %s %02x != %02x\n",
> +       font_name, tmA.tmLastChar, test_char);
> +#endif
> +    if (pGetFontUnicodeRanges)
> +    {
> +        ok(tmW.tmFirstChar == first_unicode_char, "tmFirstChar for %s %02x != %02x\n",
> +           font_name, tmW.tmFirstChar, first_unicode_char);
> +/* FIXME: remove completely once Wine is fixed
> + * GetFontUnicodeRanges in Wine returns wrong data for fonts with
> + * SYMBOL_CHARSET.
> + */
> +if (tmW.tmLastChar != last_unicode_char)
> +todo_wine  ok(tmW.tmLastChar == last_unicode_char, "tmLastChar for %s %02x != %02x\n",
> +           font_name, tmW.tmLastChar, last_unicode_char);
> +else
> +        ok(tmW.tmLastChar == last_unicode_char, "tmLastChar for %s %02x != %02x\n",
> +           font_name, tmW.tmLastChar, last_unicode_char);
> +    }
> +
> +    ret = GetDeviceCaps(hdc, LOGPIXELSX);
> +    ok(tmW.tmDigitizedAspectX == ret, "tmDigitizedAspectX %u != %u\n",
> +       tmW.tmDigitizedAspectX, ret);
> +    ret = GetDeviceCaps(hdc, LOGPIXELSY);
> +    ok(tmW.tmDigitizedAspectX == ret, "tmDigitizedAspectY %u != %u\n",
> +       tmW.tmDigitizedAspectX, ret);
> +
> +    SelectObject(hdc, hfont_old);
> +    DeleteObject(hfont);
> +
> +    ReleaseDC(0, hdc);
> +}
> +
> +static INT CALLBACK enum_truetype_font_proc(const LOGFONT *lf, const TEXTMETRIC *ntm, DWORD type, LPARAM lParam)
> +{
> +    INT *enumed = (INT *)lParam;
> +
> +    if (type == TRUETYPE_FONTTYPE)
> +    {
> +        (*enumed)++;
> +        test_text_metrics(lf);
> +    }
> +    return 1;
> +}
> +
> +static void test_GetTextMetrics(void)
> +{
> +    LOGFONTA lf;
> +    HDC hdc;
> +    INT enumed;
> +
> +    SetLastError(0xdeadbeef);
> +    GetTextMetricsW(0, NULL);
> +    if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
> +    {
> +        skip("Skipping GetTextMetrics test on a Win9x platform\n");
> +        return;
> +    }
> +
> +    hdc = GetDC(0);
> +
> +    memset(&lf, 0, sizeof(lf));
> +    lf.lfCharSet = DEFAULT_CHARSET;
> +    enumed = 0;
> +    EnumFontFamiliesExA(hdc, &lf, enum_truetype_font_proc, (LPARAM)&enumed, 0);
> +    trace("Tested metrics of %d truetype fonts\n", enumed);
> +
> +    ReleaseDC(0, hdc);
> +}
> +
>  START_TEST(font)
>  {
>      init();
> @@ -1427,4 +1565,5 @@ START_TEST(font)
>      }
>      else
>          skip("Arial Black or Symbol/Wingdings is not installed\n");
> +    test_GetTextMetrics();
>  }
> --
> 1.5.0.2
>
>
>
>
>
>
-------------- next part --------------
font.c:211:found bitmap font System, height 16
font.c:373:found font MS Sans Serif, height 13 charset 0
font.c:373:found font MS Sans Serif, height 16 charset 0
font.c:373:found font MS Sans Serif, height 20 charset 0
font.c:373:found font Courier, height 13 charset 0
font.c:373:found font System, height 16 charset 0
font.c:373:found font Small Fonts, height 11 charset 0
font.c:670:testing font Arial, height 12
font.c:716:total_kern_pairs 909
font.c:670:testing font Arial, height -34
font.c:716:total_kern_pairs 909
font.c:670:testing font Arial, height 120
font.c:716:total_kern_pairs 909
font.c:799:otm buffer size 246 (0xf6)
font.c:1157:found 146 ranges
font.c:1223:Testing font Arial Black, charset 0
font.c:1256:enumerated ansi 3, symbol 0, russian 1 fonts for Arial Black
font.c:1285:enumerated ansi 3, symbol 0, russian 0 fonts for Arial Black ANSI_CHARSET
font.c:1316:enumerated ansi 3, symbol 0, russian 1 fonts for Arial Black DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 0, russian 0 fonts for Arial Black SYMBOL_CHARSET
font.c:1223:Testing font Symbol, charset 2
font.c:1256:enumerated ansi 0, symbol 1, russian 0 fonts for Symbol
font.c:1285:enumerated ansi 0, symbol 0, russian 0 fonts for Symbol ANSI_CHARSET
font.c:1316:enumerated ansi 0, symbol 1, russian 0 fonts for Symbol DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 1, russian 0 fonts for Symbol SYMBOL_CHARSET
font.c:1223:Testing font <empty>, charset 0
font.c:1256:enumerated ansi 0, symbol 0, russian 0 fonts for <empty>
font.c:1285:enumerated ansi 65, symbol 0, russian 0 fonts for <empty> ANSI_CHARSET
font.c:1316:enumerated ansi 61, symbol 5, russian 25 fonts for <empty> DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 6, russian 0 fonts for <empty> SYMBOL_CHARSET
font.c:1223:Testing font <empty>, charset 2
font.c:1256:enumerated ansi 0, symbol 0, russian 0 fonts for <empty>
font.c:1285:enumerated ansi 65, symbol 0, russian 0 fonts for <empty> ANSI_CHARSET
font.c:1316:enumerated ansi 61, symbol 5, russian 25 fonts for <empty> DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 6, russian 0 fonts for <empty> SYMBOL_CHARSET
font.c:1223:Testing font <empty>, charset 1
font.c:1243:enumerated ansi 61, symbol 5, russian 25 fonts for NULL
font.c:1256:enumerated ansi 0, symbol 0, russian 0 fonts for <empty>
font.c:1285:enumerated ansi 65, symbol 0, russian 0 fonts for <empty> ANSI_CHARSET
font.c:1316:enumerated ansi 61, symbol 5, russian 25 fonts for <empty> DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 6, russian 0 fonts for <empty> SYMBOL_CHARSET
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 0
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 238
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 204
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 161
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 162
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for Luxi Mono, charset 0
font.c:1437:for Luxi Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Mono, charset 238
font.c:1437:for Luxi Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Mono, charset 162
font.c:1437:for Luxi Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Mono, charset 186
font.c:1437:for Luxi Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 0
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 238
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 204
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 161
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 162
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 186
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 163
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 163
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bitstream Vera Sans, charset 0
font.c:1437:for Bitstream Vera Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 0
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 238
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 204
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 161
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 162
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 177
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 178
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 186
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 163
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 163
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Marlett, charset 2
font.c:1437:for Marlett first char f030, last char f079
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f079, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Marlett f020 != f030
font.c:1411:Testing font metrics for Pothana2000, charset 0
font.c:1437:for Pothana2000 first char 20, last char 200d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 200d, default 0, break 20
font.c:1411:Testing font metrics for Lohit Bengali, charset 0
font.c:1437:for Lohit Bengali first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 0
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 238
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 204
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 161
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 162
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for Lucida Sans Unicode, charset 177
font.c:1437:for Lucida Sans Unicode first char 20, last char feff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last feff, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 0
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 238
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 204
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 161
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 162
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 177
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 186
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for TSCu_Times, charset 0
font.c:1437:for TSCu_Times first char 20, last char e007
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last e007, default 0, break 20
font.c:1411:Testing font metrics for aakar, charset 0
font.c:1437:for aakar first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for aakar 20 != 0d
font.c:1411:Testing font metrics for Luxi Sans, charset 0
font.c:1437:for Luxi Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Sans, charset 238
font.c:1437:for Luxi Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Sans, charset 162
font.c:1437:for Luxi Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Sans, charset 186
font.c:1437:for Luxi Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 0
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 238
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 204
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 161
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 162
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 186
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 186
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Samyak, charset 0
font.c:1437:for Samyak first char d, last char d57
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last d57, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 0
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 238
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 204
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 161
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 162
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 186
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 186
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Mallige, charset 0
font.c:1437:for Mallige first char 20, last char cef
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last cef, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 0
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 238
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 204
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 161
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 162
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Garamond, charset 186
font.c:1437:for Garamond first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 0
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 238
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 204
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 161
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 162
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 186
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 163
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Palatino Linotype, charset 163
font.c:1437:for Palatino Linotype first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 0
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 238
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 204
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 161
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 162
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 186
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Narrow, charset 186
font.c:1437:for Arial Narrow first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 0
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 238
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 162
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 162
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bitstream Vera Serif, charset 0
font.c:1437:for Bitstream Vera Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Ani, charset 0
font.c:1437:for Ani first char 1e, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Ani 00 != 1e
font.c:1411:Testing font metrics for Wingdings 2, charset 2
font.c:1437:for Wingdings 2 first char f020, last char f0f9
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0f9, default 0, break 20
font.c:1411:Testing font metrics for Lohit Tamil, charset 0
font.c:1437:for Lohit Tamil first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Samanata, charset 0
font.c:1437:for Samanata first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Samanata 20 != 0d
font.c:1411:Testing font metrics for Impact, charset 0
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 238
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 204
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 161
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 162
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 186
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 186
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 0
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 238
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 204
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 161
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 162
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for padmaa, charset 0
font.c:1437:for padmaa first char d, last char af1
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last af1, default 0, break 20
font.c:1474: Test failed: tmFirstChar for padmaa 20 != 0d
font.c:1411:Testing font metrics for Century Gothic, charset 0
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 238
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 204
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 161
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 162
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 186
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Century Gothic, charset 186
font.c:1437:for Century Gothic first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 0
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 238
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 204
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 161
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 162
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 186
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Book Antiqua, charset 186
font.c:1437:for Book Antiqua first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 0
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 238
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 204
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 161
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 162
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 186
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 186
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 0
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 238
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 204
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 161
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 162
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 177
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 178
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 186
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 163
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 222
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Tahoma, charset 222
font.c:1437:for Tahoma first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 0
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 238
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 204
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 161
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 162
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 177
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 178
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 186
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for Bitstream Vera Sans Mono, charset 0
font.c:1437:for Bitstream Vera Sans Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 0
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 238
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 204
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 161
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 162
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 177
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 186
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 163
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 163
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 0
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 238
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 204
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 161
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 162
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 186
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 163
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 163
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Light, charset 163
font.c:1437:for DejaVu Sans Light first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Light 0d != 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 0
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 238
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 204
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 161
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 162
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 186
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Monotype Corsiva, charset 186
font.c:1437:for Monotype Corsiva first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Mukti Narrow, charset 0
font.c:1437:for Mukti Narrow first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Saab, charset 0
font.c:1437:for Saab first char 20, last char 262c
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 262c, default 0, break 20
font.c:1411:Testing font metrics for Mitra Mono, charset 0
font.c:1437:for Mitra Mono first char a, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first a, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Wingdings, charset 2
font.c:1437:for Wingdings first char f020, last char f0ff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0ff, default 0, break 20
font.c:1411:Testing font metrics for TAMu_Kadambri, charset 0
font.c:1437:for TAMu_Kadambri first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for TSCu_Paranar, charset 0
font.c:1437:for TSCu_Paranar first char 7, last char e0b4
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 7, last e0b4, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 0
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 238
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 204
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 161
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 162
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 186
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bookman Old Style, charset 186
font.c:1437:for Bookman Old Style first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Rekha, charset 0
font.c:1437:for Rekha first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Rekha 20 != 0d
font.c:1411:Testing font metrics for Jamrul, charset 0
font.c:1437:for Jamrul first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Jamrul 20 != 0d
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 0
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 238
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 204
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 161
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 162
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 177
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 178
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 186
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 163
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 222
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Microsoft Sans Serif, charset 222
font.c:1437:for Microsoft Sans Serif first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 0
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 238
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 204
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 161
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 162
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 177
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 178
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 186
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 163
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 163
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 0
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 238
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 204
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 161
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 162
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for Luxi Serif, charset 0
font.c:1437:for Luxi Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Serif, charset 238
font.c:1437:for Luxi Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Serif, charset 162
font.c:1437:for Luxi Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Luxi Serif, charset 186
font.c:1437:for Luxi Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Lohit Gujarati, charset 0
font.c:1437:for Lohit Gujarati first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for TAMu_Maduram, charset 0
font.c:1437:for TAMu_Maduram first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for Webdings, charset 2
font.c:1437:for Webdings first char f020, last char f0ff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0ff, default 0, break 20
font.c:1411:Testing font metrics for Vemana2000, charset 0
font.c:1437:for Vemana2000 first char 20, last char 200d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 200d, default 0, break 20
font.c:1411:Testing font metrics for Symbol, charset 2
font.c:1437:for Symbol first char f020, last char f0fe
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0ff, default 0, break 20
font.c:1411:Testing font metrics for Likhan, charset 0
font.c:1437:for Likhan first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Likhan 20 != 0d
font.c:1411:Testing font metrics for utkal, charset 0
font.c:1437:for utkal first char d, last char c144
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last c144, default 0, break 20
font.c:1474: Test failed: tmFirstChar for utkal 00 != 0d
font.c:1411:Testing font metrics for TAMu_Kalyani, charset 0
font.c:1437:for TAMu_Kalyani first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for Kedage, charset 0
font.c:1437:for Kedage first char 20, last char cef
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last cef, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 0
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 238
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 204
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 162
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 186
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 163
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 163
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Lohit Punjabi, charset 0
font.c:1437:for Lohit Punjabi first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Lohit Hindi, charset 0
font.c:1437:for Lohit Hindi first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Gargi_1.7, charset 0
font.c:1437:for Gargi_1.7 first char d, last char e96a
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last e96a, default 0, break 20
font.c:1411:Testing font metrics for TSCu_Comic, charset 0
font.c:1437:for TSCu_Comic first char 20, last char e007
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last e007, default 0, break 20
font.c:1411:Testing font metrics for Lucida Console, charset 0
font.c:1437:for Lucida Console first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Lucida Console, charset 238
font.c:1437:for Lucida Console first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Lucida Console, charset 204
font.c:1437:for Lucida Console first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Lucida Console, charset 161
font.c:1437:for Lucida Console first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Lucida Console, charset 162
font.c:1437:for Lucida Console first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Agency FB, charset 0
font.c:1437:for Agency FB first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Agency FB, charset 0
font.c:1437:for Agency FB first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Wingdings 3, charset 2
font.c:1437:for Wingdings 3 first char f020, last char f0f0
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0f0, default 0, break 20
font.c:1411:Testing font metrics for OpenSymbol, charset 0
font.c:1437:for OpenSymbol first char 20, last char e0dd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last e0dd, default 0, break 20
font.c:1411:Testing font metrics for Kalimati, charset 0
font.c:1437:for Kalimati first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 20, break 20
font.c:1454:W: first 20, last 25cc, default 20, break 20
font.c:1533:Tested metrics of 265 truetype fonts
font: 3686 tests executed (36 marked as todo, 63 failures), 0 skipped.
-------------- next part --------------
font.c:211:found bitmap font System, height 16
font.c:373:found font MS Sans Serif, height 13 charset 0
font.c:373:found font MS Sans Serif, height 16 charset 0
font.c:373:found font MS Sans Serif, height 20 charset 0
font.c:373:found font Courier, height 13 charset 0
font.c:381: Test failed: Courier(13): tm.tmAscent 10 != 11
font.c:382: Test failed: Courier(13): tm.tmDescent 3 != 2
font.c:373:found font System, height 16 charset 0
font.c:373:found font Small Fonts, height 11 charset 0
font.c:539: Tests skipped: Symbol is not installed so skipping this test
font.c:670:testing font Arial, height 12
font.c:716:total_kern_pairs 909
font.c:670:testing font Arial, height -34
font.c:716:total_kern_pairs 909
font.c:670:testing font Arial, height 120
font.c:716:total_kern_pairs 909
font.c:799:otm buffer size 246 (0xf6)
font.c:1102: Tests skipped: Symbol or Wingdings is not installed
font.c:1118: Tests skipped: Symbol or Wingdings is not installed
font.c:1157:found 155 ranges
font.c:1223:Testing font Arial Black, charset 0
font.c:1256:enumerated ansi 1, symbol 0, russian 1 fonts for Arial Black
font.c:1285:enumerated ansi 1, symbol 0, russian 0 fonts for Arial Black ANSI_CHARSET
font.c:1316:enumerated ansi 1, symbol 0, russian 1 fonts for Arial Black DEFAULT_CHARSET
font.c:1374:enumerated ansi 0, symbol 0, russian 0 fonts for Arial Black SYMBOL_CHARSET
font.c:1223:Testing font Symbol, charset 2
font.c:1227: Tests skipped: Symbol is not installed
font.c:1567: Tests skipped: Arial Black or Symbol/Wingdings is not installed
font.c:1411:Testing font metrics for ae_AlBattar, charset 0
font.c:1437:for ae_AlBattar first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlBattar, charset 178
font.c:1437:for ae_AlBattar first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Samanata, charset 0
font.c:1437:for Samanata first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Samanata 20 != 0d
font.c:1411:Testing font metrics for Kochi Gothic, charset 0
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for Kochi Gothic, charset 238
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for Kochi Gothic, charset 204
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for Kochi Gothic, charset 162
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for Kochi Gothic, charset 186
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for Kochi Gothic, charset 128
font.c:1437:for Kochi Gothic first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Gothic 00 != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 0
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 238
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 204
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 161
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 162
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 178
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 186
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans, charset 163
font.c:1437:for DejaVu Sans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans 0d != 20
font.c:1411:Testing font metrics for MgOpen Modata, charset 0
font.c:1437:for MgOpen Modata first char 20, last char 2212
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2212, default 0, break 20
font.c:1411:Testing font metrics for TSCu_Times, charset 0
font.c:1437:for TSCu_Times first char 20, last char e007
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last e007, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 0
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 238
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 204
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 161
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 162
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif, charset 186
font.c:1437:for DejaVu Serif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif 0d != 20
font.c:1411:Testing font metrics for Baekmuk Batang, charset 0
font.c:1437:for Baekmuk Batang first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Batang, charset 129
font.c:1437:for Baekmuk Batang first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for Bitstream Vera Serif, charset 0
font.c:1437:for Bitstream Vera Serif first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for FreeSans, charset 0
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 238
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 204
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 161
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 162
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 177
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 186
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 186
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for FreeSans, charset 186
font.c:1437:for FreeSans first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSans 0d != 20
font.c:1411:Testing font metrics for Lohit Gujarati, charset 0
font.c:1437:for Lohit Gujarati first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for MgOpen Cosmetica, charset 0
font.c:1437:for MgOpen Cosmetica first char 20, last char 2265
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2265, default 0, break 20
font.c:1411:Testing font metrics for MgOpen Moderna, charset 161
font.c:1437:for MgOpen Moderna first char 20, last char 2219
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2219, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 0
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 238
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 204
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 161
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 162
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 186
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Condensed, charset 163
font.c:1437:for DejaVu Sans Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Condensed 0d != 20
font.c:1411:Testing font metrics for Verdana, charset 0
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 238
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 204
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 161
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 162
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 186
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 163
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Verdana, charset 163
font.c:1437:for Verdana first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Bitstream Vera Sans, charset 0
font.c:1437:for Bitstream Vera Sans first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for ae_Mashq, charset 0
font.c:1437:for ae_Mashq first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Mashq, charset 178
font.c:1437:for ae_Mashq first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Norasi, charset 0
font.c:1437:for Norasi first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last fb04, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Norasi 00 != 20
font.c:1411:Testing font metrics for Norasi, charset 222
font.c:1437:for Norasi first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last fb04, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Norasi 00 != 20
font.c:1411:Testing font metrics for Norasi, charset 222
font.c:1437:for Norasi first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last fb04, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Norasi 00 != 20
font.c:1411:Testing font metrics for Norasi, charset 222
font.c:1437:for Norasi first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last fb04, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Norasi 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 0
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 238
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 204
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 162
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 186
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for Kochi Mincho, charset 128
font.c:1437:for Kochi Mincho first char 20, last char ffee
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last ffee, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Kochi Mincho 00 != 20
font.c:1411:Testing font metrics for TSCu_Paranar, charset 0
font.c:1437:for TSCu_Paranar first char 7, last char e0b4
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 7, last e0b4, default 0, break 20
font.c:1411:Testing font metrics for padmaa, charset 0
font.c:1437:for padmaa first char d, last char af1
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last af1, default 0, break 20
font.c:1474: Test failed: tmFirstChar for padmaa 20 != 0d
font.c:1411:Testing font metrics for Georgia, charset 0
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 238
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 204
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 161
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 162
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 186
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Georgia, charset 186
font.c:1437:for Georgia first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 0
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 238
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 204
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 161
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 162
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 177
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 186
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 163
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Courier New, charset 163
font.c:1437:for Courier New first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for ae_Sindibad, charset 0
font.c:1437:for ae_Sindibad first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Sindibad, charset 178
font.c:1437:for ae_Sindibad first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Petra, charset 0
font.c:1437:for ae_Petra first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Petra, charset 178
font.c:1437:for ae_Petra first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Mitra Mono, charset 0
font.c:1437:for Mitra Mono first char a, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first a, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for FreeSerif, charset 0
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 238
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 204
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 161
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 162
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 177
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 178
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 186
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 222
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 128
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 128
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for FreeSerif, charset 128
font.c:1437:for FreeSerif first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeSerif 0d != 20
font.c:1411:Testing font metrics for Bitstream Vera Sans Mono, charset 0
font.c:1437:for Bitstream Vera Sans Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for ae_Granada, charset 0
font.c:1437:for ae_Granada first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Granada, charset 178
font.c:1437:for ae_Granada first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 0
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 238
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 204
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 161
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 162
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 186
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 128
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 134
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 136
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 136
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ShanHeiSun Uni, charset 136
font.c:1437:for AR PL ShanHeiSun Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for ae_Nada, charset 0
font.c:1437:for ae_Nada first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Nada, charset 178
font.c:1437:for ae_Nada first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 0
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 238
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 204
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 161
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 162
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 177
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 178
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 186
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 163
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Times New Roman, charset 163
font.c:1437:for Times New Roman first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for FreeMono, charset 0
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 238
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 204
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 161
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 162
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 177
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 186
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 186
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for FreeMono, charset 186
font.c:1437:for FreeMono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for FreeMono 0d != 20
font.c:1411:Testing font metrics for MgOpen Canonica, charset 0
font.c:1437:for MgOpen Canonica first char 20, last char 25a7
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last f005, default 0, break 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 0
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 238
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 204
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 161
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 162
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for DejaVu Sans Mono, charset 186
font.c:1437:for DejaVu Sans Mono first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Sans Mono 0d != 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 0
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 238
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 204
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 161
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 162
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 177
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 178
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 186
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 163
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 222
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 222
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Phetsarath OT, charset 222
font.c:1437:for Phetsarath OT first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Kalimati, charset 0
font.c:1437:for Kalimati first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 20, break 20
font.c:1454:W: first 20, last 25cc, default 20, break 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 0
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 238
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 204
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 161
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 162
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for DejaVu Serif Condensed, charset 186
font.c:1437:for DejaVu Serif Condensed first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last fffd, default 0, break 20
font.c:1474: Test failed: tmFirstChar for DejaVu Serif Condensed 0d != 20
font.c:1411:Testing font metrics for Webdings, charset 2
font.c:1437:for Webdings first char f020, last char f0ff
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first f020, last f0ff, default 0, break 20
font.c:1411:Testing font metrics for TSCu_Comic, charset 0
font.c:1437:for TSCu_Comic first char 20, last char e007
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last e007, default 0, break 20
font.c:1411:Testing font metrics for Lohit Punjabi, charset 0
font.c:1437:for Lohit Punjabi first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Dotum, charset 0
font.c:1437:for Baekmuk Dotum first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Dotum, charset 129
font.c:1437:for Baekmuk Dotum first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for ae_Rasheeq, charset 0
font.c:1437:for ae_Rasheeq first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Rasheeq, charset 178
font.c:1437:for ae_Rasheeq first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Dimnah, charset 0
font.c:1437:for ae_Dimnah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Dimnah, charset 178
font.c:1437:for ae_Dimnah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Furat, charset 0
font.c:1437:for ae_Furat first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Furat, charset 178
font.c:1437:for ae_Furat first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for TAMu_Kalyani, charset 0
font.c:1437:for TAMu_Kalyani first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for ae_Haramain, charset 0
font.c:1437:for ae_Haramain first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Haramain, charset 178
font.c:1437:for ae_Haramain first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Jamrul, charset 0
font.c:1437:for Jamrul first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Jamrul 20 != 0d
font.c:1411:Testing font metrics for Mallige, charset 0
font.c:1437:for Mallige first char 20, last char cef
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last cef, default 0, break 20
font.c:1411:Testing font metrics for ae_Metal, charset 0
font.c:1437:for ae_Metal first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Metal, charset 178
font.c:1437:for ae_Metal first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Tholoth, charset 0
font.c:1437:for ae_Tholoth first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Tholoth, charset 178
font.c:1437:for ae_Tholoth first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 0
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 238
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 204
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 161
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 162
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 186
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Trebuchet MS, charset 186
font.c:1437:for Trebuchet MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for ae_Shado, charset 0
font.c:1437:for ae_Shado first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Shado, charset 178
font.c:1437:for ae_Shado first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Electron, charset 0
font.c:1437:for ae_Electron first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Electron, charset 178
font.c:1437:for ae_Electron first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 0
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 238
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 204
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 162
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 186
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 163
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Chandas, charset 163
font.c:1437:for Chandas first char 20, last char fffd
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffd, default 0, break 20
font.c:1411:Testing font metrics for Lohit Tamil, charset 0
font.c:1437:for Lohit Tamil first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 0
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 238
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 204
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 161
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 162
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 186
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial Black, charset 186
font.c:1437:for Arial Black first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Saab, charset 0
font.c:1437:for Saab first char 20, last char 262c
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 262c, default 0, break 20
font.c:1411:Testing font metrics for ae_Nagham, charset 0
font.c:1437:for ae_Nagham first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Nagham, charset 178
font.c:1437:for ae_Nagham first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Ostorah, charset 0
font.c:1437:for ae_Ostorah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Ostorah, charset 178
font.c:1437:for ae_Ostorah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Hor, charset 0
font.c:1437:for ae_Hor first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Hor, charset 178
font.c:1437:for ae_Hor first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlHor, charset 0
font.c:1437:for ae_AlHor first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlHor, charset 178
font.c:1437:for ae_AlHor first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Headline, charset 0
font.c:1437:for Baekmuk Headline first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Headline, charset 129
font.c:1437:for Baekmuk Headline first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for TAMu_Maduram, charset 0
font.c:1437:for TAMu_Maduram first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for Likhan, charset 0
font.c:1437:for Likhan first char d, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Likhan 20 != 0d
font.c:1411:Testing font metrics for ae_Jet, charset 0
font.c:1437:for ae_Jet first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Jet, charset 178
font.c:1437:for ae_Jet first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for TlwgMono, charset 0
font.c:1437:for TlwgMono first char 20, last char f71d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71d, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgMono 0d != 20
font.c:1411:Testing font metrics for TlwgMono, charset 222
font.c:1437:for TlwgMono first char 20, last char f71d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71d, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgMono 0d != 20
font.c:1411:Testing font metrics for TlwgMono, charset 222
font.c:1437:for TlwgMono first char 20, last char f71d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71d, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgMono 0d != 20
font.c:1411:Testing font metrics for ae_Tarablus, charset 0
font.c:1437:for ae_Tarablus first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Tarablus, charset 178
font.c:1437:for ae_Tarablus first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMohanad, charset 0
font.c:1437:for ae_AlMohanad first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMohanad, charset 178
font.c:1437:for ae_AlMohanad first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Garuda, charset 0
font.c:1437:for Garuda first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Garuda 0d != 20
font.c:1411:Testing font metrics for Garuda, charset 222
font.c:1437:for Garuda first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Garuda 0d != 20
font.c:1411:Testing font metrics for Garuda, charset 222
font.c:1437:for Garuda first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Garuda 0d != 20
font.c:1411:Testing font metrics for Garuda, charset 222
font.c:1437:for Garuda first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Garuda 0d != 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 0
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 238
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 204
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 161
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 162
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 186
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Comic Sans MS, charset 186
font.c:1437:for Comic Sans MS first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 0
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 238
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 204
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 161
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 162
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 177
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 186
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 163
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Arial, charset 163
font.c:1437:for Arial first char 20, last char fffc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fffc, default 0, break 20
font.c:1411:Testing font metrics for Lohit Hindi, charset 0
font.c:1437:for Lohit Hindi first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for TAMu_Kadambri, charset 0
font.c:1437:for TAMu_Kadambri first char 20, last char 2122
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 2122, default 0, break 20
font.c:1411:Testing font metrics for ae_AlManzomah, charset 0
font.c:1437:for ae_AlManzomah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlManzomah, charset 178
font.c:1437:for ae_AlManzomah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Graph, charset 0
font.c:1437:for ae_Graph first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Graph, charset 178
font.c:1437:for ae_Graph first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 0
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 238
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 204
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 161
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 162
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 186
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 186
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Andale Mono, charset 186
font.c:1437:for Andale Mono first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Vemana2000, charset 0
font.c:1437:for Vemana2000 first char 20, last char 200d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 200d, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMateen, charset 0
font.c:1437:for ae_AlMateen first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMateen, charset 178
font.c:1437:for ae_AlMateen first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Salem, charset 0
font.c:1437:for ae_Salem first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Salem, charset 178
font.c:1437:for ae_Salem first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMothnna, charset 0
font.c:1437:for ae_AlMothnna first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlMothnna, charset 178
font.c:1437:for ae_AlMothnna first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for GentiumAlt, charset 0
font.c:1437:for GentiumAlt first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for GentiumAlt, charset 238
font.c:1437:for GentiumAlt first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for GentiumAlt, charset 161
font.c:1437:for GentiumAlt first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for GentiumAlt, charset 162
font.c:1437:for GentiumAlt first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for GentiumAlt, charset 162
font.c:1437:for GentiumAlt first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Gulim, charset 0
font.c:1437:for Baekmuk Gulim first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for Baekmuk Gulim, charset 129
font.c:1437:for Baekmuk Gulim first char 20, last char ffe6
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last ffe6, default 0, break 20
font.c:1411:Testing font metrics for ae_AlArabiya, charset 0
font.c:1437:for ae_AlArabiya first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlArabiya, charset 178
font.c:1437:for ae_AlArabiya first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlYermook, charset 0
font.c:1437:for ae_AlYermook first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_AlYermook, charset 178
font.c:1437:for ae_AlYermook first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Arab, charset 0
font.c:1437:for ae_Arab first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Arab, charset 178
font.c:1437:for ae_Arab first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Gentium, charset 0
font.c:1437:for Gentium first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for Gentium, charset 238
font.c:1437:for Gentium first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for Gentium, charset 161
font.c:1437:for Gentium first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for Gentium, charset 162
font.c:1437:for Gentium first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for Gentium, charset 162
font.c:1437:for Gentium first char 20, last char fb04
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb04, default 0, break 20
font.c:1411:Testing font metrics for TlwgTypewriter, charset 0
font.c:1437:for TlwgTypewriter first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgTypewriter 0d != 20
font.c:1411:Testing font metrics for TlwgTypewriter, charset 222
font.c:1437:for TlwgTypewriter first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgTypewriter 0d != 20
font.c:1411:Testing font metrics for TlwgTypewriter, charset 222
font.c:1437:for TlwgTypewriter first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for TlwgTypewriter 0d != 20
font.c:1411:Testing font metrics for ae_Sharjah, charset 0
font.c:1437:for ae_Sharjah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Sharjah, charset 178
font.c:1437:for ae_Sharjah first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Khalid, charset 0
font.c:1437:for ae_Khalid first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Khalid, charset 178
font.c:1437:for ae_Khalid first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Kayrawan, charset 0
font.c:1437:for ae_Kayrawan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Kayrawan, charset 178
font.c:1437:for ae_Kayrawan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Lohit Bengali, charset 0
font.c:1437:for Lohit Bengali first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 0
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 238
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 204
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 161
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 162
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 186
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for Impact, charset 186
font.c:1437:for Impact first char 20, last char fb02
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fb02, default 0, break 20
font.c:1411:Testing font metrics for ae_Japan, charset 0
font.c:1437:for ae_Japan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Japan, charset 178
font.c:1437:for ae_Japan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Cortoba, charset 0
font.c:1437:for ae_Cortoba first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Cortoba, charset 178
font.c:1437:for ae_Cortoba first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for utkal, charset 0
font.c:1437:for utkal first char d, last char c144
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last c144, default 0, break 20
font.c:1474: Test failed: tmFirstChar for utkal 00 != 0d
font.c:1411:Testing font metrics for ae_Ouhod, charset 0
font.c:1437:for ae_Ouhod first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Ouhod, charset 178
font.c:1437:for ae_Ouhod first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for malayalam, charset 0
font.c:1437:for malayalam first char d, last char ed59
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last ed59, default 0, break 20
font.c:1411:Testing font metrics for Ani, charset 0
font.c:1437:for Ani first char 1e, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 25cc, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Ani 00 != 1e
font.c:1411:Testing font metrics for Kedage, charset 0
font.c:1437:for Kedage first char 20, last char cef
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last cef, default 0, break 20
font.c:1411:Testing font metrics for Mukti Narrow, charset 0
font.c:1437:for Mukti Narrow first char 20, last char 25cc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 25cc, default 0, break 20
font.c:1411:Testing font metrics for Pothana2000, charset 0
font.c:1437:for Pothana2000 first char 20, last char 200d
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last 200d, default 0, break 20
font.c:1411:Testing font metrics for ae_Nice, charset 0
font.c:1437:for ae_Nice first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Nice, charset 178
font.c:1437:for ae_Nice first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Hani, charset 0
font.c:1437:for ae_Hani first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Hani, charset 178
font.c:1437:for ae_Hani first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Rehan, charset 0
font.c:1437:for ae_Rehan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for ae_Rehan, charset 178
font.c:1437:for ae_Rehan first char 20, last char fefc
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 20, last fefc, default 0, break 20
font.c:1411:Testing font metrics for Purisa, charset 222
font.c:1437:for Purisa first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Purisa 0d != 20
font.c:1411:Testing font metrics for Purisa, charset 2
font.c:1437:for Purisa first char 20, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Purisa 0d != 20
font.c:1411:Testing font metrics for Loma, charset 222
font.c:1437:for Loma first char d, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Loma 00 != 0d
font.c:1411:Testing font metrics for Loma, charset 222
font.c:1437:for Loma first char d, last char f71e
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last f71e, default 0, break 20
font.c:1474: Test failed: tmFirstChar for Loma 00 != 0d
font.c:1411:Testing font metrics for OpenSymbol, charset 0
font.c:1437:for OpenSymbol first char c, last char e6a3
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first c, last e6a3, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 0
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 238
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 204
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 161
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 162
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 186
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 128
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 134
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 136
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 136
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for AR PL ZenKai Uni, charset 136
font.c:1437:for AR PL ZenKai Uni first char 0, last char 501
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first 0, last 501, default 0, break 20
font.c:1411:Testing font metrics for Gargi_1.7, charset 0
font.c:1437:for Gargi_1.7 first char d, last char e96a
font.c:1447:A: first 1e, last ff, default 0, break 20
font.c:1454:W: first d, last e96a, default 0, break 20
font.c:1533:Tested metrics of 353 truetype fonts
font: 4408 tests executed (36 marked as todo, 111 failures), 5 skipped.


More information about the wine-devel mailing list