diff options
author | dgp <dgp@users.sourceforge.net> | 2006-02-16 20:25:05 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-02-16 20:25:05 (GMT) |
commit | 14a955c27520dbd65d0525ab0b1b3ea7c1ccc66a (patch) | |
tree | f47cd419de4ba2fadeaa1c511880e4dac7a2a28c /tests/indexObj.test | |
parent | 0db044ae28d427ebebd09c07b3d6212d3ee1357a (diff) | |
download | tcl-14a955c27520dbd65d0525ab0b1b3ea7c1ccc66a.zip tcl-14a955c27520dbd65d0525ab0b1b3ea7c1ccc66a.tar.gz tcl-14a955c27520dbd65d0525ab0b1b3ea7c1ccc66a.tar.bz2 |
* generic/tclIndexObj.c: Disallow the "ambiguous" error message
* tests/indexObj.test: when TCL_EXACT matching is requested.
* tests/ioCmd.test:
Diffstat (limited to 'tests/indexObj.test')
-rw-r--r-- | tests/indexObj.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/indexObj.test b/tests/indexObj.test index 7fea854..ca58cc3 100644 --- a/tests/indexObj.test +++ b/tests/indexObj.test @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: indexObj.test,v 1.9 2004/11/25 16:37:15 dkf Exp $ +# RCS: @(#) $Id: indexObj.test,v 1.10 2006/02/16 20:25:07 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -54,6 +54,9 @@ test indexObj-2.4 {ambiguous value} testindexobj { test indexObj-2.5 {omit error message} testindexobj { list [catch {testindexobj 0 1 d x} msg] $msg } {1 {}} +test indexObj-2.6 {TCL_EXACT => no "ambiguous" error message} { + list [catch {testindexobj 1 0 d dumb daughter a c} msg] $msg +} {1 {bad token "d": must be dumb, daughter, a, or c}} test indexObj-3.1 {cache result to skip next lookup} testindexobj { testindexobj check 42 |