diff options
author | dgp <dgp@users.sourceforge.net> | 2009-02-16 04:33:10 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-02-16 04:33:10 (GMT) |
commit | da4f0d06bf46a3ce2f768e602066d711bb8b5ba7 (patch) | |
tree | aafbfe754871d6e90e971521aaf164a0b8274665 /tests | |
parent | 83b89e4cb82d0744ad11a21b568e43fc6398f605 (diff) | |
download | tcl-da4f0d06bf46a3ce2f768e602066d711bb8b5ba7.zip tcl-da4f0d06bf46a3ce2f768e602066d711bb8b5ba7.tar.gz tcl-da4f0d06bf46a3ce2f768e602066d711bb8b5ba7.tar.bz2 |
* generic/tclTestObj.c: Replace the [teststringobj ualloc] testing
* tests/stringObj.test: command with [teststringobj maxchars] and
update the tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stringObj.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/stringObj.test b/tests/stringObj.test index 7489df2..6b8e739 100644 --- a/tests/stringObj.test +++ b/tests/stringObj.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: stringObj.test,v 1.19 2009/02/16 04:06:08 dgp Exp $ +# RCS: @(#) $Id: stringObj.test,v 1.20 2009/02/16 04:33:10 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -193,9 +193,9 @@ test stringObj-8.1 {DupStringInternalRep procedure} testobj { teststringobj append 1 abcde -1 testobj duplicate 1 2 list [teststringobj length 1] [teststringobj length2 1] \ - [teststringobj ualloc 1] [teststringobj get 1] \ + [teststringobj maxchars 1] [teststringobj get 1] \ [teststringobj length 2] [teststringobj length2 2] \ - [teststringobj ualloc 2] [teststringobj get 2] + [teststringobj maxchars 2] [teststringobj get 2] } {5 10 0 abcde 5 5 0 abcde} test stringObj-8.2 {DupUnicodeInternalRep, mixed width chars} testobj { set x abc\u00ef\u00bf\u00aeghi |