diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-16 12:17:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-16 12:17:49 (GMT) |
commit | 8844e2789a8e8d854f53069ea852ec5ef726757c (patch) | |
tree | 04640dd662a24ea83c7ac4075f99c6b444730fb0 /tests | |
parent | 94c40f8b7100eb40e174041600f31ec60c4b7bc2 (diff) | |
parent | 532506ea202974a816409de319b0a66d9173ce74 (diff) | |
download | tcl-8844e2789a8e8d854f53069ea852ec5ef726757c.zip tcl-8844e2789a8e8d854f53069ea852ec5ef726757c.tar.gz tcl-8844e2789a8e8d854f53069ea852ec5ef726757c.tar.bz2 |
Merge 8.7
Diffstat (limited to 'tests')
-rw-r--r-- | tests/string.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/string.test b/tests/string.test index b01d059..0eaa3da 100644 --- a/tests/string.test +++ b/tests/string.test @@ -2086,19 +2086,19 @@ test string-24.15.$noComp {string reverse command - pure bytearray} { binary scan [run {tcl::string::reverse [binary format H* 010203]}] H* x set x } 030201 -test string-24.16.$noComp {string reverse command - surrogates} knownBug { +test string-24.16.$noComp {string reverse command - surrogates} { run {string reverse \u0444bulb\uD83D\uDE02} } \uD83D\uDE02blub\u0444 -test string-24.17.$noComp {string reverse command - surrogates} knownBug { +test string-24.17.$noComp {string reverse command - surrogates} { run {string reverse \uD83D\uDE02hello\uD83D\uDE02} } \uD83D\uDE02olleh\uD83D\uDE02 -test string-24.18.$noComp {string reverse command - surrogates} knownBug { +test string-24.18.$noComp {string reverse command - surrogates} { set s \u0444bulb\uD83D\uDE02 # shim shimmery ... string index $s 0 run {string reverse $s} } \uD83D\uDE02blub\u0444 -test string-24.19.$noComp {string reverse command - surrogates} knownBug { +test string-24.19.$noComp {string reverse command - surrogates} { set s \uD83D\uDE02hello\uD83D\uDE02 # shim shimmery ... string index $s 0 |