diff options
author | Steve Bennett <steveb@workware.net.au> | 2024-08-16 08:45:39 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2024-08-28 11:56:46 +1000 |
commit | 590ceb4a2f220f4ef3e07d7819858204590e5718 (patch) | |
tree | 473345a6040cc06927562131c67f867c52a3787b | |
parent | 160cf919ae2cfbe3a9784b94002121a4270e8a16 (diff) | |
download | jimtcl-590ceb4a2f220f4ef3e07d7819858204590e5718.zip jimtcl-590ceb4a2f220f4ef3e07d7819858204590e5718.tar.gz jimtcl-590ceb4a2f220f4ef3e07d7819858204590e5718.tar.bz2 |
lsort tests: some tests require utf-8 support
Signed-off-by: Steve Bennett <steveb@workware.net.au>
-rw-r--r-- | tests/lsort.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lsort.test b/tests/lsort.test index 4e5c2b3..f60bc06 100644 --- a/tests/lsort.test +++ b/tests/lsort.test @@ -318,11 +318,11 @@ test cmdIL-4.22 {DictionaryCompare procedure, case} { test cmdIL-4.23 {DictionaryCompare procedure, case} { lsort -dictionary {ABcd AbCd} } {ABcd AbCd} -test cmdIL-4.24 {DictionaryCompare procedure, international characters} { +test cmdIL-4.24 {DictionaryCompare procedure, international characters} utf8 { set result [lsort -dictionary "a b c A B C \xe3 \xc4"] set result } "A a B b C c \xe3 \xc4" -test cmdIL-4.25 {DictionaryCompare procedure, international characters} { +test cmdIL-4.25 {DictionaryCompare procedure, international characters} utf8 { set result [lsort -dictionary "a23\xe3 a23\xc5 a23\xe4"] set result } "a23\xe3 a23\xe4 a23\xc5" |