diff options
author | dgp <dgp@users.sourceforge.net> | 2003-03-06 23:27:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-03-06 23:27:12 (GMT) |
commit | 717a75ea043e247d252c17e9c0e9ac8243a2fa8a (patch) | |
tree | b1a72619f7dd43be739320a272719b7c91030da7 /tests/utf.test | |
parent | 894d26e115f83b973c3a3c31d7e5ccab5e604779 (diff) | |
download | tcl-717a75ea043e247d252c17e9c0e9ac8243a2fa8a.zip tcl-717a75ea043e247d252c17e9c0e9ac8243a2fa8a.tar.gz tcl-717a75ea043e247d252c17e9c0e9ac8243a2fa8a.tar.bz2 |
* generic/TclUtf.c (Tcl_UniCharNcasecmp): Corrected failure to
* tests/utf.test (utf-25.*): properly compare Unicode strings of
different case in a case insensitive manner. [Bug 699042]
Diffstat (limited to 'tests/utf.test')
-rw-r--r-- | tests/utf.test | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/tests/utf.test b/tests/utf.test index 0ba2414..0e1b315 100644 --- a/tests/utf.test +++ b/tests/utf.test @@ -8,10 +8,10 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: utf.test,v 1.8 2001/05/28 04:31:14 hobbs Exp $ +# RCS: @(#) $Id: utf.test,v 1.9 2003/03/06 23:27:14 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { - package require tcltest + package require tcltest 2 namespace import -force ::tcltest::* } @@ -299,6 +299,40 @@ test utf-24.2 {unicode space char in regc_locale.c} { list [regexp {^[[:space:]]+$} \u1680] [regexp {^\s+$} \u1680] } {1 1} +testConstraint teststringobj [llength [info commands teststringobj]] +test utf-25.1 {Tcl_UniCharNcasecmp} teststringobj { + testobj freeallvars + teststringobj set 1 a + teststringobj set 2 b + teststringobj getunicode 1 + teststringobj getunicode 2 + string compare -nocase [teststringobj get 1] [teststringobj get 2] +} -1 +test utf-25.2 {Tcl_UniCharNcasecmp} teststringobj { + testobj freeallvars + teststringobj set 1 b + teststringobj set 2 a + teststringobj getunicode 1 + teststringobj getunicode 2 + string compare -nocase [teststringobj get 1] [teststringobj get 2] +} 1 +test utf-25.3 {Tcl_UniCharNcasecmp} teststringobj { + testobj freeallvars + teststringobj set 1 B + teststringobj set 2 a + teststringobj getunicode 1 + teststringobj getunicode 2 + string compare -nocase [teststringobj get 1] [teststringobj get 2] +} 1 +test utf-25.4 {Tcl_UniCharNcasecmp} teststringobj { + testobj freeallvars + teststringobj set 1 aBcB + teststringobj set 2 abca + teststringobj getunicode 1 + teststringobj getunicode 2 + string compare -nocase [teststringobj get 1] [teststringobj get 2] +} 1 + # cleanup ::tcltest::cleanupTests return |