diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-16 08:15:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-16 08:15:02 (GMT) |
commit | 94c928a85902c6e9cd103d3b2e9f6fca2cfacc6b (patch) | |
tree | f2b4da0957464459c179c05d989591eb1ce6e50f | |
parent | 9faf91402bd760daffdd9a305bd63065e9c9dc11 (diff) | |
download | tcl-94c928a85902c6e9cd103d3b2e9f6fca2cfacc6b.zip tcl-94c928a85902c6e9cd103d3b2e9f6fca2cfacc6b.tar.gz tcl-94c928a85902c6e9cd103d3b2e9f6fca2cfacc6b.tar.bz2 |
Add testcase
-rw-r--r-- | tests/encoding.test | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/encoding.test b/tests/encoding.test index 1125397..db70744 100644 --- a/tests/encoding.test +++ b/tests/encoding.test @@ -490,16 +490,22 @@ test encoding-17.2 {UtfToUcs2Proc} -body { } -result "\uFFFD" test encoding-17.3 {UtfToUtf16Proc} -body { encoding convertto -nocomplain utf-16be "\uDCDC" -} -result "\xFF\xFD" +} -result "\xDC\xDC" test encoding-17.4 {UtfToUtf16Proc} -body { encoding convertto -nocomplain utf-16le "\uD8D8" -} -result "\xFD\xFF" +} -result "\xD8\xD8" test encoding-17.5 {UtfToUtf16Proc} -body { encoding convertto utf-32le "\U460DC" } -result "\xDC\x60\x04\x00" test encoding-17.6 {UtfToUtf16Proc} -body { encoding convertto utf-32be "\U460DC" } -result "\x00\x04\x60\xDC" +test encoding-17.7 {UtfToUtf16Proc} -body { + encoding convertto -strict utf-16be "\uDCDC" +} -returnCodes error -result {unexpected character at index 0: 'U+00DCDC'} +test encoding-17.8 {UtfToUtf16Proc} -body { + encoding convertto -strict utf-16le "\uD8D8" +} -returnCodes error -result {unexpected character at index 0: 'U+00D8D8'} test encoding-18.1 {TableToUtfProc} { } {} |