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/binary.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/binary.test')
-rw-r--r-- | tests/binary.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/binary.test b/tests/binary.test index f792dd8..fb137db 100644 --- a/tests/binary.test +++ b/tests/binary.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: binary.test,v 1.11.2.3 2005/09/27 15:44:13 dkf Exp $ +# RCS: @(#) $Id: binary.test,v 1.11.2.4 2006/04/05 15:17:06 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -1460,9 +1460,9 @@ test binary-41.8 {ScanNumber: word alignment} {nonPortable pcOnly} { } {2 1 1.6} test binary-42.1 {Tcl_BinaryObjCmd: bad arguments} {} { - catch {binary ""} result + catch {binary ?} result set result -} {bad option "": must be format or scan} +} {bad option "?": must be format or scan} # Wide int (guaranteed at least 64-bit) handling test binary-43.1 {Tcl_BinaryObjCmd: format wide int} {} { |