summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-15 12:35:33 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-15 12:35:33 (GMT)
commit13b1a0635f7e5f4c9fce04fe3474d16418d57522 (patch)
tree5383d3a38e5064ecfa8a45e48515bfd027c7446a /tests
parentab91723185690febc744d2e0f85bcbeac259874a (diff)
downloadtcl-13b1a0635f7e5f4c9fce04fe3474d16418d57522.zip
tcl-13b1a0635f7e5f4c9fce04fe3474d16418d57522.tar.gz
tcl-13b1a0635f7e5f4c9fce04fe3474d16418d57522.tar.bz2
More testcases from Christian Werner, regarding "string reverse" with Emoji. Those testcases fail in all Tcl 8.6.x releases.
Diffstat (limited to 'tests')
-rw-r--r--tests/string.test18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/string.test b/tests/string.test
index c7cf8d5..3f0a04b 100644
--- a/tests/string.test
+++ b/tests/string.test
@@ -1828,6 +1828,24 @@ test string-24.15 {string reverse command - pure bytearray} {
binary scan [tcl::string::reverse [binary format H* 010203]] H* x
set x
} 030201
+test string-24.16 {string reverse command - surrogates} knownBug {
+ string reverse \u0444bulb\uD83D\uDE02
+} \uD83D\uDE02blub\u0444
+test string-24.17 {string reverse command - surrogates} knownBug {
+ string reverse \uD83D\uDE02hello\uD83D\uDE02
+} \uD83D\uDE02olleh\uD83D\uDE02
+test string-24.18 {string reverse command - surrogates} knownBug {
+ set s \u0444bulb\uD83D\uDE02
+ # shim shimmery ...
+ string index $s 0
+ string reverse $s
+} \uD83D\uDE02blub\u0444
+test string-24.19 {string reverse command - surrogates} knownBug {
+ set s \uD83D\uDE02hello\uD83D\uDE02
+ # shim shimmery ...
+ string index $s 0
+ string reverse $s
+} \uD83D\uDE02olleh\uD83D\uDE02
test string-25.1 {string is list} {
string is list {a b c}