diff options
author | dgp <dgp@users.sourceforge.net> | 2007-03-13 17:34:04 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-03-13 17:34:04 (GMT) |
commit | 84123c4cacea732e2b6e56b5ea512f95532b801f (patch) | |
tree | e19be9d20be4d7bafdf81c86ff6e67bcb53da56f /tests | |
parent | 1be08c98899f5b648849af473a5c2eb845409966 (diff) | |
download | tcl-84123c4cacea732e2b6e56b5ea512f95532b801f.zip tcl-84123c4cacea732e2b6e56b5ea512f95532b801f.tar.gz tcl-84123c4cacea732e2b6e56b5ea512f95532b801f.tar.bz2 |
Added test for [Bug 1675044].
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cmdIL.test | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test index d8e956f..c9796db 100644 --- a/tests/cmdIL.test +++ b/tests/cmdIL.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: cmdIL.test,v 1.32 2007/03/09 16:40:21 dkf Exp $ +# RCS: @(#) $Id: cmdIL.test,v 1.33 2007/03/13 17:34:04 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -748,6 +748,23 @@ test cmdIL-7.6 {lreverse command - unshared object [Bug 1672585]} { lreverse [set x {1 2 3}][unset x] } {3 2 1} +testConstraint testobj [llength [info commands testobj]] +test cmdIL-7.7 {lreverse command - shared intrep [Bug 1675044]} -setup { + teststringobj set 1 {1 2 3} + testobj convert 1 list + testobj duplicate 1 2 + variable x [teststringobj get 1] + variable y [teststringobj get 2] + testobj freeallvars + proc K {a b} {return $a} +} -constraints testobj -body { + lreverse [K $y [unset y]] + lindex $x 0 +} -cleanup { + unset -nocomplain x y + rename K {} +} -result 1 + # cleanup ::tcltest::cleanupTests return |