diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-02-16 21:29:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-02-16 21:29:07 (GMT) |
commit | 6d674a96a1b99426cabf17e5b52272399c73e8bc (patch) | |
tree | 048c30b03945c06e941dee2ce555ab664dc95022 /tests | |
parent | a3f58db271d9f90d1eeba9e348cb8f7295789a81 (diff) | |
download | tcl-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.test | 4 |
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 |