diff options
author | dgp <dgp@users.sourceforge.net> | 2006-04-05 15:16:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-04-05 15:16:46 (GMT) |
commit | 729b47be45a702ff78180857ffeaa1e7ce2c0de5 (patch) | |
tree | 667b3d1bc8a2e6c36298009343029b89ddd38dfd /tests/indexObj.test | |
parent | 1fbc814589c815aba033653af3694fc122ce1538 (diff) | |
download | tcl-729b47be45a702ff78180857ffeaa1e7ce2c0de5.zip tcl-729b47be45a702ff78180857ffeaa1e7ce2c0de5.tar.gz tcl-729b47be45a702ff78180857ffeaa1e7ce2c0de5.tar.bz2 |
* generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Allow empty
strings to be matched by the Tcl_GetIndexFromObj machinery, in
the same manner as any other key. [Bug 1464039]
Diffstat (limited to 'tests/indexObj.test')
-rw-r--r-- | tests/indexObj.test | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/indexObj.test b/tests/indexObj.test index 168b225..0d8a21d 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.7.18.2 2006/04/05 13:20:14 dkf Exp $ +# RCS: @(#) $Id: indexObj.test,v 1.7.18.3 2006/04/05 15:17:06 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -72,8 +72,11 @@ test indexObj-2.7 {exact match of empty values} { list [catch {testindexobj 1 1 {} a b c} msg] $msg } {1 {ambiguous token "": must be a, b, or c}} test indexObj-2.8 {exact match of empty values: singleton case} { - list [catch {testindexobj 1 1 {} a} msg] $msg + list [catch {testindexobj 1 0 {} a} msg] $msg } {1 {bad token "": must be a}} +test indexObj-2.9 {non-exact match of empty values: singleton case} { + testindexobj 1 1 {} a +} 0 test indexObj-3.1 {cache result to skip next lookup} { testindexobj check 42 |