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:
Chengwei Yang 2013-06-29 12:21:27 +08:00 committed by Simon McVittie
parent 32e5cab56a
commit cef5a419f4

View file

@ -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[] = {