[PATCH 1/5] usp10/tests: Add a latn shaping test with ligatures.

Aric Stewart aric at codeweavers.com
Mon Mar 6 12:16:12 CST 2017


Signed-off-by: Aric Stewart <aric at codeweavers.com>

On 3/2/17 2:38 AM, Henri Verbeet wrote:
> Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
> ---
>  dlls/usp10/tests/usp10.c | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c
> index c5cc401..b8c7b70 100644
> --- a/dlls/usp10/tests/usp10.c
> +++ b/dlls/usp10/tests/usp10.c
> @@ -1185,6 +1185,13 @@ static void test_ScriptShapeOpenType(HDC hdc)
>                              {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
>                              {0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
>  
> +    static const WCHAR test3[] = {'t', 't', 'f', 'f', 'f', 'i', 0};
> +    static const shapeTest_char t3_c[] = {{0, {0, 0}}, {0, {0, 0}}, {0, {0, 0}},
> +            {1, {0, 0}}, {1, {0, 0}}, {1, {0, 0}}};
> +    static const shapeTest_glyph t3_g[] = {
> +                            {1, {{SCRIPT_JUSTIFY_CHARACTER, 1, 0, 0, 0, 0}, 0}},
> +                            {1, {{SCRIPT_JUSTIFY_CHARACTER, 1, 0, 0, 0, 0}, 0}}};
> +
>      /* Hebrew */
>      static const WCHAR test_hebrew[]  = {0x05e9, 0x05dc, 0x05d5, 0x05dd,0};
>      static const shapeTest_char hebrew_c[] = {{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
> @@ -1467,6 +1474,14 @@ static void test_ScriptShapeOpenType(HDC hdc)
>  
>      test_shape_ok(hdc, test2, 4, &Control, &State, 1, 4, t2_c, glyph_test);
>  
> +    test_valid = find_font_for_range(hdc, "Calibri", 0, test3[0], &hfont, &hfont_orig);
> +    if (hfont != NULL)
> +    {
> +        test_shape_ok_valid(test_valid, hdc, test3, 6, &Control, &State, 0, 2, t3_c, t3_g);
> +        SelectObject(hdc, hfont_orig);
> +        DeleteObject(hfont);
> +    }
> +
>      test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 11, test_hebrew[0], &hfont, &hfont_orig);
>      if (hfont != NULL)
>      {
> 



More information about the wine-patches mailing list