summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-02-16 21:29:07 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-02-16 21:29:07 (GMT)
commit6d674a96a1b99426cabf17e5b52272399c73e8bc (patch)
tree048c30b03945c06e941dee2ce555ab664dc95022 /tests
parenta3f58db271d9f90d1eeba9e348cb8f7295789a81 (diff)
downloadtcl-6d674a96a1b99426cabf17e5b52272399c73e8bc.zip
tcl-6d674a96a1b99426cabf17e5b52272399c73e8bc.tar.gz
tcl-6d674a96a1b99426cabf17e5b52272399c73e8bc.tar.bz2
Final part of [10c2c17c32]: UTF-LE32 encoder mapping of surrogates. Problem was in testcase, not in actual code
Diffstat (limited to 'tests')
-rw-r--r--tests/encoding.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/encoding.test b/tests/encoding.test
index ed41937..a46fa5f 100644
--- a/tests/encoding.test
+++ b/tests/encoding.test
@@ -525,9 +525,9 @@ test encoding-16.13 {Utf16ToUtfProc} -body {
test encoding-16.14 {Utf16ToUtfProc} -body {
encoding convertfrom utf-16le \x00\xDC
} -result \uDC00
-test encoding-16.15 {Utf16ToUtfProc} -constraints knownBug -body {
+test encoding-16.15 {Utf16ToUtfProc} -body {
encoding convertfrom utf-16le \x00\xD8\x00\xDC
-} -result \uD800\uDC00
+} -result \U010000
test encoding-16.16 {Utf16ToUtfProc} -body {
encoding convertfrom utf-16le \x00\xDC\x00\xD8
} -result \uDC00\uD800