diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-25 08:56:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-05-25 08:56:35 (GMT) |
commit | ef0ad83e38569d28700b3145c5593fc3562bcd6d (patch) | |
tree | f64891189cc8ad35838f7cfcb7c798817fa79067 /tests | |
parent | a623f528f64f6fbb4a8d8cf347b454d5770d37b4 (diff) | |
download | tcl-ef0ad83e38569d28700b3145c5593fc3562bcd6d.zip tcl-ef0ad83e38569d28700b3145c5593fc3562bcd6d.tar.gz tcl-ef0ad83e38569d28700b3145c5593fc3562bcd6d.tar.bz2 |
Fix testcase utf-4.12 (which - actually - exposed this bug)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utf.test | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/utf.test b/tests/utf.test index c0d64e2..60596f7 100644 --- a/tests/utf.test +++ b/tests/utf.test @@ -16,6 +16,8 @@ if {"::tcltest" ni [namespace children]} { ::tcltest::loadTestedCommands catch [list package require -exact tcl::test [info patchlevel]] +package require tcltests + testConstraint ucs2 [expr {[format %c 0x010000] eq "\uFFFD"}] testConstraint fullutf [expr {[format %c 0x010000] ne "\uFFFD"}] testConstraint utf16 [expr {[string length [format %c 0x10000]] == 2}] @@ -191,12 +193,9 @@ test utf-4.10 {Tcl_NumUtfChars: #x00, calc len, overcomplete} {testnumutfchars t test utf-4.11 {Tcl_NumUtfChars: 3 bytes of 4-byte UTF-8 characater} {testnumutfchars testbytestring} { testnumutfchars [testbytestring \xF0\x9F\x92\xA9] end-1 } 3 -test utf-4.12.0 {Tcl_NumUtfChars: #4-byte UTF-8 character} {testnumutfchars testbytestring ucs2} { +test utf-4.12 {Tcl_NumUtfChars: #4-byte UTF-8 character} {testnumutfchars testbytestring deprecated} { testnumutfchars [testbytestring \xF0\x9F\x92\xA9] end } 2 -test utf-4.12.1 {Tcl_NumUtfChars: #4-byte UTF-8 character} {testnumutfchars testbytestring utf32} { - testnumutfchars [testbytestring \xF0\x9F\x92\xA9] end -} 1 test utf-4.13 {Tcl_NumUtfChars: end of string} {testnumutfchars testbytestring} { testnumutfchars foobar[testbytestring \xF2\xC2\xA0] end } 8 |