From 590ceb4a2f220f4ef3e07d7819858204590e5718 Mon Sep 17 00:00:00 2001 From: Steve Bennett <steveb@workware.net.au> Date: Fri, 16 Aug 2024 08:45:39 +1000 Subject: lsort tests: some tests require utf-8 support Signed-off-by: Steve Bennett <steveb@workware.net.au> --- tests/lsort.test | 4 ++-- 1 file 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" -- cgit v1.1