diff options
author | dgp <dgp@users.sourceforge.net> | 2011-04-12 20:04:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-04-12 20:04:11 (GMT) |
commit | 37b1332c5e9a5098b66e6775c9073680f9cf94fa (patch) | |
tree | 31ff3921f38c2e5d92fec768e544fc37c2ab5333 /tests | |
parent | 1eb966fd80e4ebb3ff65e00e5f23a682790ab385 (diff) | |
download | tcl-37b1332c5e9a5098b66e6775c9073680f9cf94fa.zip tcl-37b1332c5e9a5098b66e6775c9073680f9cf94fa.tar.gz tcl-37b1332c5e9a5098b66e6775c9073680f9cf94fa.tar.bz2 |
Repair corruption in [string reverse] when string rep invalidation failed
to also reset the bytes allocated for string rep to zero [Bug 3285472].
Diffstat (limited to 'tests')
-rw-r--r-- | tests/string.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/string.test b/tests/string.test index 6b00f3a..cddfe4c 100644 --- a/tests/string.test +++ b/tests/string.test @@ -1608,6 +1608,11 @@ test string-24.11 {string reverse command - corner case} { set y \udead string reverse $x$y } \udead\ubeef +test string-24.12 {string reverse command - corner case} { + set x \ubeef + set y \udead + string is ascii [string reverse $x$y] +} 0 test string-25.1 {string is list} { string is list {a b c} |