diff options
Diffstat (limited to 'tests/cmdIL.test')
-rw-r--r-- | tests/cmdIL.test | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test index cd7cf31..ac39ec0 100644 --- a/tests/cmdIL.test +++ b/tests/cmdIL.test @@ -3,14 +3,16 @@ # generates output for errors. No output means no errors were found. # # Copyright (c) 1997 Sun Microsystems, Inc. -# Copyright (c) 1998 by Scriptics Corporation. +# Copyright (c) 1998-1999 by Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: cmdIL.test,v 1.5 1998/10/13 20:30:23 rjohnson Exp $ +# RCS: @(#) $Id: cmdIL.test,v 1.6 1999/04/16 00:47:24 stanton Exp $ -if {[string compare test [info procs test]] == 1} then {source defs} +if {[lsearch [namespace children] ::tcltest] == -1} { + source [file join [pwd] [file dirname [info script]] defs.tcl] +} test cmdIL-1.1 {Tcl_LsortObjCmd procedure} { list [catch {lsort} msg] $msg @@ -255,7 +257,19 @@ test cmdIL-4.22 {DictionaryCompare procedure, case} { test cmdIL-4.23 {DictionaryCompare procedure, case} { lsort -dictionary {ABcd AbCd} } {ABcd AbCd} -test cmdIL-4.24 {DefaultCompare procedure, signed characters} { +test cmdIL-4.24 {DictionaryCompare procedure, international characters} {hasIsoLocale} { + ::tcltest::set_iso8859_1_locale + set result [lsort -dictionary "a b c A B C \xe3 \xc4"] + ::tcltest::restore_locale + set result +} "A a B b C c \xe3 \xc4" +test cmdIL-4.25 {DictionaryCompare procedure, international characters} {hasIsoLocale} { + ::tcltest::set_iso8859_1_locale + set result [lsort -dictionary "a23\xe3 a23\xc5 a23\xe4"] + ::tcltest::restore_locale + set result +} "a23\xe3 a23\xe4 a23\xc5" +test cmdIL-4.26 {DefaultCompare procedure, signed characters} { set l [lsort [list "abc\200" "abc"]] set viewlist {} foreach s $l { @@ -274,7 +288,7 @@ test cmdIL-4.24 {DefaultCompare procedure, signed characters} { } set viewlist } [list "abc" "abc\\200"] -test cmdIL-4.25 {DictionaryCompare procedure, signed characters} { +test cmdIL-4.27 {DictionaryCompare procedure, signed characters} { set l [lsort -dictionary [list "abc\200" "abc"]] set viewlist {} foreach s $l { @@ -293,3 +307,19 @@ test cmdIL-4.25 {DictionaryCompare procedure, signed characters} { } set viewlist } [list "abc" "abc\\200"] + +# cleanup +::tcltest::cleanupTests +return + + + + + + + + + + + + |