mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-09 14:30:20 +01:00
Test: add a test case for escaping byte > 127
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=53499 Signed-off-by: Chengwei Yang <chengwei.yang@intel.com> Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
parent
32e5cab56a
commit
cef5a419f4
1 changed files with 3 additions and 1 deletions
|
|
@ -678,7 +678,9 @@ static const EscapeTest escape_tests[] = {
|
|||
{ "Z", "Z" },
|
||||
{ "a", "a" },
|
||||
{ "i", "i" },
|
||||
{ "z", "z" }
|
||||
{ "z", "z" },
|
||||
/* Bug: https://bugs.freedesktop.org/show_bug.cgi?id=53499 */
|
||||
{ "%c3%b6", "\303\266" }
|
||||
};
|
||||
|
||||
static const char* invalid_escaped_values[] = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue