Eric Blake <ebl...@redhat.com> writes: > On 08/08/2018 07:02 AM, Markus Armbruster wrote: >> Cover surrogates, invalid escapes, and noncharacters. This >> demonstrates that valid surrogate pairs are misinterpreted, and >> invalid surrogates and noncharacters aren't rejected. >> >> Signed-off-by: Markus Armbruster <arm...@redhat.com> >> --- >> tests/check-qjson.c | 53 ++++++++++++++++++++++++++++++++++++++------- >> 1 file changed, 45 insertions(+), 8 deletions(-) >> > >> + { "\\u12x", NULL }, >> + { "\\u123x", NULL }, >> + { "\\u12345", "\341\210\2645" }, >> + { "\\u12345", "\341\210\2645" }, > > Why is this one duplicated?
Editing accident, fixing. > Otherwise, > Reviewed-by: Eric Blake <ebl...@redhat.com> Thanks!