diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-03-02 20:25:45 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-03-02 20:25:45 -0500 |
commit | 565c111c430410e0858b577fc97721659c407d0d (patch) | |
tree | 321ee5f494c6d17736ca66d295d991a84824e35b /tests | |
parent | 53a4f14e8801b0018a7ecf607a91aaa190f1bc41 (diff) | |
download | pango-565c111c430410e0858b577fc97721659c407d0d.tar.gz |
markup tests: Pass accel_marker='_'
And print out the accel_char if we get one back.
This will let us add tests for accel functionality.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/markup-parse.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/markup-parse.c b/tests/markup-parse.c index 5f1454a1..2ee8c85e 100644 --- a/tests/markup-parse.c +++ b/tests/markup-parse.c @@ -47,11 +47,12 @@ test_file (const gchar *filename, GString *string) gboolean ret; char *str; int start, end; + gunichar accel = 0; g_file_get_contents (filename, &contents, &length, &error); g_assert_no_error (error); - ret = pango_parse_markup (contents, length, 0, &attrs, &text, NULL, &error); + ret = pango_parse_markup (contents, length, '_', &attrs, &text, &accel, &error); g_free (contents); if (ret) @@ -74,6 +75,12 @@ test_file (const gchar *filename, GString *string) pango_attr_list_unref (attrs); pango_font_description_free (desc); g_free (text); + + if (accel) + { + g_string_append (string, "\n\n---\n\n"); + g_string_append_unichar (string, accel); + } } else { |