summaryrefslogtreecommitdiffstats
path: root/tests/dict.test
diff options
context:
space:
mode:
authorferrieux <ferrieux@users.sourceforge.net>2010-05-20 08:55:22 (GMT)
committerferrieux <ferrieux@users.sourceforge.net>2010-05-20 08:55:22 (GMT)
commit06144449abc54195262aec969ae727fad584e90e (patch)
treed9b5cd99730677003ef72d4097e079d0f61655ed /tests/dict.test
parent648819bdd25529cc1cc5c1d6be4ea20353b2f285 (diff)
downloadtcl-06144449abc54195262aec969ae727fad584e90e.zip
tcl-06144449abc54195262aec969ae727fad584e90e.tar.gz
tcl-06144449abc54195262aec969ae727fad584e90e.tar.bz2
[Backport] Also check the reverse path of dict->list EIAS violation.
Diffstat (limited to 'tests/dict.test')
-rw-r--r--tests/dict.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/dict.test b/tests/dict.test
index f7996df..f02171a 100644
--- a/tests/dict.test
+++ b/tests/dict.test
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: dict.test,v 1.24.2.4 2010/05/19 21:47:49 ferrieux Exp $
+# RCS: @(#) $Id: dict.test,v 1.24.2.5 2010/05/20 08:55:22 ferrieux Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -131,6 +131,7 @@ test dict-3.15 {compiled dict get error cleanliness - Bug 2431847} -body {
}}
} -returnCodes error -result {key "d" not known in dictionary}
test dict-3.16 {dict/list shimmering - Bug 3004007} {set l [list p 1 p 2 q 3];dict get $l q;set l} {p 1 p 2 q 3}
+test dict-3.17 {dict/list shimmering - Bug 3004007} {set l [list p 1 p 2 q 3];dict get $l q;llength $l} 6
test dict-4.1 {dict replace command} {
getOrder [dict replace {a b c d}] a c