diff options
author | stanton <stanton@noemail.net> | 1999-05-06 18:46:42 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1999-05-06 18:46:42 (GMT) |
commit | 530e015e63dff49628c6c0a8083dde4681f3d6af (patch) | |
tree | 9c149c65795f698ce02226359670d8bc28d9895a /tests/error.test | |
parent | 607ef1030552998c28fe880b13a5d7da9cda1fb3 (diff) | |
download | tcl-530e015e63dff49628c6c0a8083dde4681f3d6af.zip tcl-530e015e63dff49628c6c0a8083dde4681f3d6af.tar.gz tcl-530e015e63dff49628c6c0a8083dde4681f3d6af.tar.bz2 |
* doc/string.n:
* tests/cmdIL.test:
* tests/cmdMZ.test:
* tests/error.test:
* tests/ioCmd.test:
* tests/lindex.test:
* tests/linsert.test:
* tests/lrange.test:
* tests/lreplace.test:
* tests/string.test:
* tests/cmdIL.test:
* generic/tclUtil.c:
* generic/tclCmdMZ.c: Replaced "string icompare/iequal" with
-nocase and -length switches to "string compare/equal". Added a
-nocase option to "string map". Changed index syntax to allow
integer or end?-integer? instead of a full expression. This is
much simpler with safeTcl scripts since it avoids double
substitution issues.
FossilOrigin-Name: fb86d777335b2ac849402a221620f256735bb566
Diffstat (limited to 'tests/error.test')
-rw-r--r-- | tests/error.test | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/tests/error.test b/tests/error.test index a4d311f..5427816 100644 --- a/tests/error.test +++ b/tests/error.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: error.test,v 1.4 1999/05/04 01:33:12 stanton Exp $ +# RCS: @(#) $Id: error.test,v 1.5 1999/05/06 18:46:43 stanton Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -32,20 +32,20 @@ proc foo2 {} { # Catch errors occurring in commands and errors from "error" command test error-1.1 {simple errors from commands} { - catch {format [string compare]} b + catch {format [string index]} b } 1 test error-1.2 {simple errors from commands} { - catch {format [string compare]} b + catch {format [string index]} b set b -} {wrong # args: should be "string compare string1 string2 ?length?"} +} {wrong # args: should be "string index string charIndex"} test error-1.3 {simple errors from commands} { - catch {format [string compare]} b + catch {format [string index]} b set errorInfo -} {wrong # args: should be "string compare string1 string2 ?length?" +} {wrong # args: should be "string index string charIndex" while executing -"string compare"} +"string index"} test error-1.4 {simple errors from commands} { catch {error glorp} b @@ -178,15 +178,3 @@ test error-6.1 {catch must reset error state} { catch {rename p ""} ::tcltest::cleanupTests return - - - - - - - - - - - - |