diff options
author | dgp <dgp@users.sourceforge.net> | 2003-06-09 21:51:55 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-06-09 21:51:55 (GMT) |
commit | 88bf24e7cb31b621f6232bbe780c1ea64a5c77cc (patch) | |
tree | eabdd5d2af1a932e9b611af83c5f87b8ac8f754c /tests/string.test | |
parent | bbd2e7af7aeb9a2e197f40113740755504716d7a (diff) | |
download | tcl-88bf24e7cb31b621f6232bbe780c1ea64a5c77cc.zip tcl-88bf24e7cb31b621f6232bbe780c1ea64a5c77cc.tar.gz tcl-88bf24e7cb31b621f6232bbe780c1ea64a5c77cc.tar.bz2 |
* string.test (string-4.15): Added test for [string first] bug
reported in Tcl 8.3, where test for all-single-byte-encoded strings
was not reliable.
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/string.test b/tests/string.test index f1ba56d..6e937f4 100644 --- a/tests/string.test +++ b/tests/string.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: string.test,v 1.36.2.1 2003/04/11 20:49:54 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.36.2.2 2003/06/09 21:51:56 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -213,6 +213,13 @@ test string-4.13 {string first, start index} { test string-4.14 {string first, negative start index} { string first b abc -1 } 1 +test string-4.15 {string first, ability to two-byte encoded utf-8 chars} { + # Test for a bug in Tcl 8.3 where test for all-single-byte-encoded + # strings was incorrect, leading to an index returned by [string first] + # which pointed past the end of the string. + set uchar \u057e ;# character with two-byte encoding in utf-8 + string first % %#$uchar$uchar#$uchar$uchar#% 3 +} 8 test string-5.1 {string index} { list [catch {string index} msg] $msg |