mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
tests: Encode invalid UTF-8 before outputted in a test message
`g_test_message()` requires correctly encoded arguments, but some of the strings in the `uri` test are (deliberately) not valid UTF-8. Encode them before printing them. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
parent
b82bfe7642
commit
011202dbc5
@ -479,14 +479,16 @@ test_uri_escape_string (void)
|
||||
for (i = 0; i < G_N_ELEMENTS (tests); i++)
|
||||
{
|
||||
gchar *s = NULL;
|
||||
gchar *escaped = g_strescape (tests[i].unescaped, NULL);
|
||||
|
||||
g_test_message ("Test %" G_GSIZE_FORMAT ": %s", i, tests[i].unescaped);
|
||||
g_test_message ("Test %" G_GSIZE_FORMAT ": %s", i, escaped);
|
||||
|
||||
s = g_uri_escape_string (tests[i].unescaped,
|
||||
tests[i].reserved_chars_allowed,
|
||||
tests[i].allow_utf8);
|
||||
g_assert_cmpstr (s, ==, tests[i].expected_escaped);
|
||||
g_free (s);
|
||||
g_free (escaped);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user