diff options
author | Tom Gundersen <teg@jklm.no> | 2014-12-22 00:58:26 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-12-22 20:26:53 +0100 |
commit | 2bb4c7e384c31de4727f1330da3f4de2f0bb7784 (patch) | |
tree | e6ca2bf55af1be1c20066533ef38f686fc40fc57 /src/test | |
parent | 856d6e09887730f115e43faf9577b479f2beb3c4 (diff) |
shared: utf8 - support ucs4 -> utf8
Originally we only supported ucs2, so move the ucs4 version from libsystemd-terminal to shared
and use that everywhere.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-json.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test-json.c b/src/test/test-json.c index 00768358bf..e53e8ed50f 100644 --- a/src/test/test-json.c +++ b/src/test/test-json.c @@ -98,6 +98,7 @@ int main(int argc, char *argv[]) { test_one("{\"foo\" : [true, false]}", JSON_OBJECT_OPEN, JSON_STRING, "foo", JSON_COLON, JSON_ARRAY_OPEN, JSON_BOOLEAN, true, JSON_COMMA, JSON_BOOLEAN, false, JSON_ARRAY_CLOSE, JSON_OBJECT_CLOSE, JSON_END); test_one("\"\xef\xbf\xbd\"", JSON_STRING, "\xef\xbf\xbd", JSON_END); test_one("\"\\ufffd\"", JSON_STRING, "\xef\xbf\xbd", JSON_END); + test_one("\"\\uf\"", -EINVAL); return 0; } |