diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-16 12:00:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-02-16 12:00:21 (GMT) |
commit | bb836a307116d682cb08f1cec66271cd3b0ce6b6 (patch) | |
tree | e555a98eb8a2b06d31f900cfd2e655bb0548dd17 /tests | |
parent | 635b0327a6edcdd57f406ec19bf6f3659756c2ce (diff) | |
parent | 999decddb383b6dbe467570cb9e3997a48286fa2 (diff) | |
download | tcl-bb836a307116d682cb08f1cec66271cd3b0ce6b6.zip tcl-bb836a307116d682cb08f1cec66271cd3b0ce6b6.tar.gz tcl-bb836a307116d682cb08f1cec66271cd3b0ce6b6.tar.bz2 |
Merge 8.6
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 |