diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-03-10 14:57:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-03-10 14:57:36 (GMT) |
commit | 9b37ffdd3cd479883df0f3aacbd2e442b40fd5e4 (patch) | |
tree | 4c34e2b06eddc7337a184990ead7f7016e28f670 /tests | |
parent | 3550b2068c9275350ca9f9ab2536ff8bf09ec1fe (diff) | |
download | tcl-9b37ffdd3cd479883df0f3aacbd2e442b40fd5e4.zip tcl-9b37ffdd3cd479883df0f3aacbd2e442b40fd5e4.tar.gz tcl-9b37ffdd3cd479883df0f3aacbd2e442b40fd5e4.tar.bz2 |
Fix [Bug 1675116] in a way suitable for 8.4.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cmdIL.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test index 6376a12..2148dd1 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.14.6.1 2003/07/15 15:44:52 dkf Exp $ +# RCS: @(#) $Id: cmdIL.test,v 1.14.6.2 2007/03/10 14:57:38 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -104,6 +104,11 @@ test cmdIL-1.25 {Tcl_LsortObjCmd procedure, order of -index and -command} { test cmdIL-1.26 {Tcl_LsortObjCmd procedure, offset indexing from end} { lsort -index end-1 {{a 1 e i} {b 2 3 f g} {c 4 5 6 d h}} } {{c 4 5 6 d h} {a 1 e i} {b 2 3 f g}} +test cmdIL-1.29 {Tcl_LsortObjCmd procedure, loss of list rep during sorting} { + set l {1 2 3} + proc testcmp args {string length $::l} + string length [lsort -command testcmp $l] +} 5 # Can't think of any good tests for the MergeSort and MergeLists # procedures, except a bunch of random lists to sort. |