aboutsummaryrefslogtreecommitdiff
path: root/tests/core/encoding
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2022-04-28 15:46:36 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2022-04-28 15:46:36 +0200
commit127b0ba65e473ae54fe514ea3e695959cefc3b68 (patch)
tree4f0ba5c4dae83ccc7c3998ffbeafb31d5964e10b /tests/core/encoding
parent80878264b63cd8476def629526b294b8e129791a (diff)
[xml] Enable tests.
Diffstat (limited to 'tests/core/encoding')
-rw-r--r--tests/core/encoding/xml/test_core_xml.odin15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/core/encoding/xml/test_core_xml.odin b/tests/core/encoding/xml/test_core_xml.odin
index 82386b2bb..a79c939c8 100644
--- a/tests/core/encoding/xml/test_core_xml.odin
+++ b/tests/core/encoding/xml/test_core_xml.odin
@@ -168,6 +168,21 @@ TESTS :: []TEST{
err = .Invalid_DocType,
crc32 = 0x49b83d0a,
},
+
+ /*
+ Parse the 8.2 MiB unicode.xml for good measure.
+ */
+ {
+ filename = "unicode.xml",
+ options = {
+ flags = {
+ .Ignore_Unsupported,
+ },
+ expected_doctype = "",
+ },
+ err = .None,
+ crc32 = 0xcaa042b9,
+ },
}
when ODIN_TEST {