summaryrefslogtreecommitdiff
path: root/json-glib/tests/meson.build
diff options
context:
space:
mode:
authorJan-Michael Brummer <jan.brummer@tabos.org>2020-12-31 15:47:00 +0100
committerJan-Michael Brummer <jan.brummer@tabos.org>2020-12-31 15:47:00 +0100
commit03ef3863734ec62f29b99205b717a826d6c76b00 (patch)
tree841908db4bbb926762ce7b6a283c50bf91ad85a0 /json-glib/tests/meson.build
parent1bd60e1a07f4c978ed16ddb6d1876b55be87e200 (diff)
downloadjson-glib-handle-utf8-bom.tar.gz
parser: Ignore UTF-8 BOM if necessaryhandle-utf8-bom
According to JSON spec BOM shouldn't be part of the JSON data, but also recommends to tolerate files with a BOM marker. As this is common in several Windows JSON generators, handle it graceful in json-glib and skip it for UTF-8 BOM. Fixes: https://gitlab.gnome.org/GNOME/json-glib/-/issues/56
Diffstat (limited to 'json-glib/tests/meson.build')
-rw-r--r--json-glib/tests/meson.build1
1 files changed, 1 insertions, 0 deletions
diff --git a/json-glib/tests/meson.build b/json-glib/tests/meson.build
index 7fdbc3f..1eb56c8 100644
--- a/json-glib/tests/meson.build
+++ b/json-glib/tests/meson.build
@@ -17,6 +17,7 @@ tests = [
test_data = [
'invalid.json',
+ 'skip-bom.json',
'stream-load.json',
]