diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-08-30 18:15:24 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-08-30 18:15:24 (GMT) |
commit | e0b6975cf3332662fd4a37a015a0f537da189c28 (patch) | |
tree | 39ee31674a5a0324d9368289abf06d114660122b /tests/string.test | |
parent | 2133401875b3b9a783d506f8eb76699042686b04 (diff) | |
download | tcl-e0b6975cf3332662fd4a37a015a0f537da189c28.zip tcl-e0b6975cf3332662fd4a37a015a0f537da189c28.tar.gz tcl-e0b6975cf3332662fd4a37a015a0f537da189c28.tar.bz2 |
Fix crash in [string map] when objects are shared. [Bug 1018562]
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/string.test b/tests/string.test index 6e937f4..a48df1c 100644 --- a/tests/string.test +++ b/tests/string.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: string.test,v 1.36.2.2 2003/06/09 21:51:56 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.36.2.3 2004/08/30 18:15:25 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -760,6 +760,10 @@ test string-10.18 {string map, empty argument} { test string-10.19 {string map, empty arguments} { string map -nocase {{} abc f bar {} def} foo } baroo +test string-10.20 {string map, nasty sharing crash from [Bug 1018562]} { + set a {a b} + string map $a $a +} {b b} test string-11.1 {string match, too few args} { list [catch {string match a} msg] $msg |