summaryrefslogtreecommitdiffstats
path: root/tests/cmdIL.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cmdIL.test')
-rw-r--r--tests/cmdIL.test558
1 files changed, 248 insertions, 310 deletions
diff --git a/tests/cmdIL.test b/tests/cmdIL.test
index 316a945..6fab269 100644
--- a/tests/cmdIL.test
+++ b/tests/cmdIL.test
@@ -1,43 +1,36 @@
-# This file contains a collection of tests for the procedures in the file
-# tclCmdIL.c. Sourcing this file into Tcl runs the tests and generates output
-# for errors. No output means no errors were found.
+# This file contains a collection of tests for the procedures in the
+# file tclCmdIL.c. Sourcing this file into Tcl runs the tests and
+# generates output for errors. No output means no errors were found.
#
-# Copyright © 1997 Sun Microsystems, Inc.
-# Copyright © 1998-1999 Scriptics Corporation.
+# Copyright (c) 1997 Sun Microsystems, Inc.
+# Copyright (c) 1998-1999 by Scriptics Corporation.
#
-# See the file "license.terms" for information on usage and redistribution of
-# this file, and for a DISCLAIMER OF ALL WARRANTIES.
+# See the file "license.terms" for information on usage and redistribution
+# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-if {"::tcltest" ni [namespace children]} {
- package require tcltest 2.5
+if {[lsearch [namespace children] ::tcltest] == -1} {
+ package require tcltest 2
namespace import -force ::tcltest::*
}
-
-::tcltest::loadTestedCommands
-catch [list package require -exact tcl::test [info patchlevel]]
-
# Used for constraining memory leak tests
testConstraint memory [llength [info commands memory]]
-testConstraint testobj [llength [info commands testobj]]
-source [file join [file dirname [info script]] internals.tcl]
-namespace import -force ::tcltest::internals::*
-
-test cmdIL-1.1 {Tcl_LsortObjCmd procedure} -returnCodes error -body {
- lsort
-} -result {wrong # args: should be "lsort ?-option value ...? list"}
-test cmdIL-1.2 {Tcl_LsortObjCmd procedure} -returnCodes error -body {
- lsort -foo {1 3 2 5}
-} -result {bad option "-foo": must be -ascii, -command, -decreasing, -dictionary, -increasing, -index, -indices, -integer, -nocase, -real, -stride, or -unique}
+
+test cmdIL-1.1 {Tcl_LsortObjCmd procedure} {
+ list [catch {lsort} msg] $msg
+} {1 {wrong # args: should be "lsort ?options? list"}}
+test cmdIL-1.2 {Tcl_LsortObjCmd procedure} {
+ list [catch {lsort -foo {1 3 2 5}} msg] $msg
+} {1 {bad option "-foo": must be -ascii, -command, -decreasing, -dictionary, -increasing, -index, -indices, -integer, -nocase, -real, or -unique}}
test cmdIL-1.3 {Tcl_LsortObjCmd procedure, default options} {
lsort {d e c b a \{ d35 d300}
} {a b c d d300 d35 e \{}
test cmdIL-1.4 {Tcl_LsortObjCmd procedure, -ascii option} {
lsort -integer -ascii {d e c b a d35 d300}
} {a b c d d300 d35 e}
-test cmdIL-1.5 {Tcl_LsortObjCmd procedure, -command option} -body {
- lsort -command {1 3 2 5}
-} -returnCodes error -result {"-command" option must be followed by comparison command}
+test cmdIL-1.5 {Tcl_LsortObjCmd procedure, -command option} {
+ list [catch {lsort -command {1 3 2 5}} msg] $msg
+} {1 {"-command" option must be followed by comparison command}}
test cmdIL-1.6 {Tcl_LsortObjCmd procedure, -command option} -setup {
proc cmp {a b} {
expr {[string match x* $b] - [string match x* $a]}
@@ -59,12 +52,12 @@ test cmdIL-1.9 {Tcl_LsortObjCmd procedure, -dictionary option} {
test cmdIL-1.10 {Tcl_LsortObjCmd procedure, -increasing option} {
lsort -decreasing -increasing {d e c b a d35 d300}
} {a b c d d300 d35 e}
-test cmdIL-1.11 {Tcl_LsortObjCmd procedure, -index option} -body {
- lsort -index {1 3 2 5}
-} -returnCodes error -result {"-index" option must be followed by list index}
-test cmdIL-1.12 {Tcl_LsortObjCmd procedure, -index option} -body {
- lsort -index foo {1 3 2 5}
-} -returnCodes error -result {bad index "foo": must be integer?[+-]integer? or end?[+-]integer?}
+test cmdIL-1.11 {Tcl_LsortObjCmd procedure, -index option} {
+ list [catch {lsort -index {1 3 2 5}} msg] $msg
+} {1 {"-index" option must be followed by list index}}
+test cmdIL-1.12 {Tcl_LsortObjCmd procedure, -index option} {
+ list [catch {lsort -index foo {1 3 2 5}} msg] $msg
+} {1 {bad index "foo": must be integer?[+-]integer? or end?[+-]integer?}}
test cmdIL-1.13 {Tcl_LsortObjCmd procedure, -index option} {
lsort -index end -integer {{2 25} {10 20 50 100} {3 16 42} 1}
} {1 {2 25} {3 16 42} {10 20 50 100}}
@@ -74,15 +67,15 @@ test cmdIL-1.14 {Tcl_LsortObjCmd procedure, -index option} {
test cmdIL-1.15 {Tcl_LsortObjCmd procedure, -integer option} {
lsort -integer {24 6 300 18}
} {6 18 24 300}
-test cmdIL-1.16 {Tcl_LsortObjCmd procedure, -integer option} -body {
- lsort -integer {1 3 2.4}
-} -returnCodes error -result {expected integer but got "2.4"}
+test cmdIL-1.16 {Tcl_LsortObjCmd procedure, -integer option} {
+ list [catch {lsort -integer {1 3 2.4}} msg] $msg
+} {1 {expected integer but got "2.4"}}
test cmdIL-1.17 {Tcl_LsortObjCmd procedure, -real option} {
lsort -real {24.2 6e3 150e-1}
} {150e-1 24.2 6e3}
-test cmdIL-1.18 {Tcl_LsortObjCmd procedure, bogus list} -body {
- lsort "1 2 3 \{ 4"
-} -returnCodes error -result {unmatched open brace in list}
+test cmdIL-1.18 {Tcl_LsortObjCmd procedure, bogus list} {
+ list [catch {lsort "1 2 3 \{ 4"} msg] $msg
+} {1 {unmatched open brace in list}}
test cmdIL-1.19 {Tcl_LsortObjCmd procedure, empty list} {
lsort {}
} {}
@@ -98,21 +91,22 @@ test cmdIL-1.24 {Tcl_LsortObjCmd procedure, order of -index and -command} -setup
proc testcmp {a b} {return [string compare $a $b]}
} -body {
set l [list [list a b] [list c d]]
- lsort -command testcmp -index 1 $l
+ list [catch {lsort -command testcmp -index 1 $l} msg] $msg
} -cleanup {
rename testcmp ""
-} -result [list [list a b] [list c d]]
+} -result [list 0 [list [list a b] [list c d]]]
test cmdIL-1.25 {Tcl_LsortObjCmd procedure, order of -index and -command} -setup {
catch {rename 1 ""}
proc testcmp {a b} {return [string compare $a $b]}
} -body {
set l [list [list a b] [list c d]]
- lsort -index 1 -command testcmp $l
+ list [catch {lsort -index 1 -command testcmp $l} msg] $msg
} -cleanup {
rename testcmp ""
-} -result [list [list a b] [list c d]]
-# Note that the required order only exists in the end-1'th element; indexing
-# using the end element or any fixed offset from the start will not work...
+} -result [list 0 [list [list a b] [list c d]]]
+# Note that the required order only exists in the end-1'th element;
+# indexing using the end element or any fixed offset from the start
+# will not work...
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}}
@@ -126,61 +120,16 @@ test cmdIL-1.29 {Tcl_LsortObjCmd procedure, loss of list rep during sorting} {
set l {1 2 3}
string length [lsort -command {apply {args {string length $::l}}} $l]
} 5
-test cmdIL-1.30 {Tcl_LsortObjCmd procedure, -stride option} {
- lsort -stride 2 {f e d c b a}
-} {b a d c f e}
-test cmdIL-1.31 {Tcl_LsortObjCmd procedure, -stride option} {
- lsort -stride 3 {f e d c b a}
-} {c b a f e d}
-test cmdIL-1.32 {lsort -stride errors} -returnCodes error -body {
- lsort -stride foo bar
-} -result {expected integer but got "foo"}
-test cmdIL-1.33 {lsort -stride errors} -returnCodes error -body {
- lsort -stride 1 bar
-} -match glob -result {stride length must be between 2 and *}
-test cmdIL-1.34 {lsort -stride errors} -returnCodes error -body {
- lsort -stride 2 {a b c}
-} -result {list size must be a multiple of the stride length}
-test cmdIL-1.35 {lsort -stride errors} -returnCodes error -body {
- lsort -stride 2 -index 3 {a b c d}
-} -result {when used with "-stride", the leading "-index" value must be within the group}
-test cmdIL-1.36 {lsort -stride and -index: Bug 2918962} {
- lsort -stride 2 -index {0 1} {
- {{c o d e} 54321} {{b l a h} 94729}
- {{b i g} 12345} {{d e m o} 34512}
- }
-} {{{b i g} 12345} {{d e m o} 34512} {{c o d e} 54321} {{b l a h} 94729}}
-test cmdIL-1.37 {Tcl_LsortObjCmd procedure, Bug 8e1e31eac0fd6b6c} {
- lsort -ascii [list \x00 \x7F \x80 \uFFFF]
-} [list \x00 \x7F \x80 \uFFFF]
-test cmdIL-1.38 {Tcl_LsortObjCmd procedure, Bug 8e1e31eac0fd6b6c} {
- lsort -ascii -nocase [list \x00 \x7F \x80 \uFFFF]
-} [list \x00 \x7F \x80 \uFFFF]
-test cmdIL-1.39 {Tcl_LsortObjCmd procedure, Bug 8e1e31eac0fd6b6c} {
- lsort -ascii [list \x00 \x7F \x80 \U01ffff \uFFFF]
-} [list \x00 \x7F \x80 \uFFFF \U01ffff]
-test cmdIL-1.40 {Tcl_LsortObjCmd procedure, Bug 8e1e31eac0fd6b6c} {
- lsort -ascii -nocase [list \x00 \x7F \x80 \U01ffff \uFFFF]
-} [list \x00 \x7F \x80 \uFFFF \U01FFFF]
-test cmdIL-1.41 {lsort -stride and -index} -body {
- lsort -stride 2 -index -2 {a 2 b 1}
-} -returnCodes error -result {index "-2" out of range}
-test cmdIL-1.42 {lsort -stride and-index} -body {
- lsort -stride 2 -index -1-1 {a 2 b 1}
-} -returnCodes error -result {index "-1-1" out of range}
-test cmdIL-1.43 {lsort -stride errors} -returnCodes error -body {
- lsort -stride 4294967296 bar
-} -match glob -result {stride length must be between 2 and *}
-# Can't think of any good tests for the MergeSort and MergeLists procedures,
-# except a bunch of random lists to sort.
+# Can't think of any good tests for the MergeSort and MergeLists
+# procedures, except a bunch of random lists to sort.
test cmdIL-2.1 {MergeSort and MergeLists procedures} -setup {
set result {}
set r 1435753299
proc rand {} {
global r
- set r [expr {(16807 * $r) % (0x7FFFFFFF)}]
+ set r [expr {(16807 * $r) % (0x7fffffff)}]
}
} -body {
for {set i 0} {$i < 150} {incr i} {
@@ -198,65 +147,39 @@ test cmdIL-2.1 {MergeSort and MergeLists procedures} -setup {
set old $el
}
}
- string trim $result
+ set result
} -cleanup {
rename rand ""
} -result {}
-test cmdIL-3.1 {SortCompare procedure, skip comparisons after error} -body {
- set ::x 0
- list [catch {
- lsort -integer -command {apply {{a b} {
- incr ::x
- error "error #$::x"
- }}} {48 6 28 190 16 2 3 6 1}
- } msg] $msg $::x
+test cmdIL-3.1 {SortCompare procedure, skip comparisons after error} -setup {
+ proc cmp {a b} {
+ global x
+ incr x
+ error "error #$x"
+ }
+} -body {
+ set x 0
+ list [catch {lsort -integer -command cmp {48 6 28 190 16 2 3 6 1}} msg] \
+ $msg $x
+} -cleanup {
+ rename cmp ""
} -result {1 {error #1} 1}
-test cmdIL-3.2 {SortCompare procedure, -index option} -body {
- lsort -integer -index 2 "\\\{ {30 40 50}"
-} -returnCodes error -result {unmatched open brace in list}
-test cmdIL-3.3 {SortCompare procedure, -index option} -body {
- lsort -integer -index 2 {{20 10} {15 30 40}}
-} -returnCodes error -result {element 2 missing from sublist "20 10"}
-test cmdIL-3.4 {SortCompare procedure, -index option} -body {
- lsort -integer -index 2 "{a b c} \\\{"
-} -returnCodes error -result {expected integer but got "c"}
-test cmdIL-3.4.1 {SortCompare procedure, -index option} -body {
- lsort -integer -index 2 "{1 2 3} \\\{"
-} -returnCodes error -result {unmatched open brace in list}
-test cmdIL-3.5 {SortCompare procedure, -index option} -body {
- lsort -integer -index 2 {{20 10 13} {15}}
-} -returnCodes error -result {element 2 missing from sublist "15"}
-test cmdIL-3.5.1 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index 1+3 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {element 4 missing from sublist "1 . c"}
-test cmdIL-3.5.2 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index -1-1 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {index "-1-1" out of range}
-test cmdIL-3.5.3 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index -2 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {index "-2" out of range}
-test cmdIL-3.5.4 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index end-4 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {element end-4 missing from sublist "1 . c"}
-test cmdIL-3.5.5 {SortCompare procedure, -index option} {
- lsort -index {} {a b}
-} {a b}
-test cmdIL-3.5.6 {SortCompare procedure, -index option} {
- lsort -index {} [list a \{]
-} {a \{}
-test cmdIL-3.5.7 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index end--1 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {index "end--1" out of range}
-test cmdIL-3.5.8 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index end+1 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {index "end+1" out of range}
-test cmdIL-3.5.9 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index end+2 {{1 . c} {2 . b} {3 . a}}
-} -returnCodes error -result {index "end+2" out of range}
-test cmdIL-3.5.10 {SortCompare procedure, -index option (out of range, calculated index)} -body {
- lsort -index 0 {{}}
-} -returnCodes error -result {element 0 missing from sublist ""}
+test cmdIL-3.2 {SortCompare procedure, -index option} {
+ list [catch {lsort -integer -index 2 "\\\{ {30 40 50}"} msg] $msg
+} {1 {unmatched open brace in list}}
+test cmdIL-3.3 {SortCompare procedure, -index option} {
+ list [catch {lsort -integer -index 2 {{20 10} {15 30 40}}} msg] $msg
+} {1 {element 2 missing from sublist "20 10"}}
+test cmdIL-3.4 {SortCompare procedure, -index option} {
+ list [catch {lsort -integer -index 2 "{a b c} \\\{"} msg] $msg
+} {1 {expected integer but got "c"}}
+test cmdIL-3.4.1 {SortCompare procedure, -index option} {
+ list [catch {lsort -integer -index 2 "{1 2 3} \\\{"} msg] $msg
+} {1 {unmatched open brace in list}}
+test cmdIL-3.5 {SortCompare procedure, -index option} {
+ list [catch {lsort -integer -index 2 {{20 10 13} {15}}} msg] $msg
+} {1 {element 2 missing from sublist "15"}}
test cmdIL-3.6 {SortCompare procedure, -index option} {
lsort -integer -index 2 {{1 15 30} {2 5 25} {3 25 20}}
} {{3 25 20} {2 5 25} {1 15 30}}
@@ -266,21 +189,21 @@ test cmdIL-3.7 {SortCompare procedure, -ascii option} {
test cmdIL-3.8 {SortCompare procedure, -dictionary option} {
lsort -dictionary {d e c b a d35 d300 100 20}
} {20 100 a b c d d35 d300 e}
-test cmdIL-3.9 {SortCompare procedure, -integer option} -body {
- lsort -integer {x 3}
-} -returnCodes error -result {expected integer but got "x"}
-test cmdIL-3.10 {SortCompare procedure, -integer option} -body {
- lsort -integer {3 q}
-} -returnCodes error -result {expected integer but got "q"}
+test cmdIL-3.9 {SortCompare procedure, -integer option} {
+ list [catch {lsort -integer {x 3}} msg] $msg
+} {1 {expected integer but got "x"}}
+test cmdIL-3.10 {SortCompare procedure, -integer option} {
+ list [catch {lsort -integer {3 q}} msg] $msg
+} {1 {expected integer but got "q"}}
test cmdIL-3.11 {SortCompare procedure, -integer option} {
- lsort -integer {35 21 0x20 0d30 0o23 100 8}
-} {8 0o23 21 0d30 0x20 35 100}
-test cmdIL-3.12 {SortCompare procedure, -real option} -body {
- lsort -real {6...4 3}
-} -returnCodes error -result {expected floating-point number but got "6...4"}
-test cmdIL-3.13 {SortCompare procedure, -real option} -body {
- lsort -real {3 1x7}
-} -returnCodes error -result {expected floating-point number but got "1x7"}
+ lsort -integer {35 21 0x20 30 0o23 100 8}
+} {8 0o23 21 30 0x20 35 100}
+test cmdIL-3.12 {SortCompare procedure, -real option} {
+ list [catch {lsort -real {6...4 3}} msg] $msg
+} {1 {expected floating-point number but got "6...4"}}
+test cmdIL-3.13 {SortCompare procedure, -real option} {
+ list [catch {lsort -real {3 1x7}} msg] $msg
+} {1 {expected floating-point number but got "1x7"}}
test cmdIL-3.14 {SortCompare procedure, -real option} {
lsort -real {24 2.5e01 16.7 85e-1 10.004}
} {85e-1 10.004 16.7 24 2.5e01}
@@ -312,10 +235,10 @@ test cmdIL-3.17 {SortCompare procedure, -command option, non-integer result} -bo
proc cmp {a b} {
return foow
}
- lsort -command cmp {48 6}
-} -returnCodes error -cleanup {
+ list [catch {lsort -command cmp {48 6}} msg] $msg
+} -cleanup {
rename cmp ""
-} -result {-compare command returned non-integer result}
+} -result {1 {-compare command returned non-integer result}}
test cmdIL-3.18 {SortCompare procedure, -command option} -body {
proc cmp {a b} {
expr {$b - $a}
@@ -399,16 +322,16 @@ test cmdIL-4.23 {DictionaryCompare procedure, case} {
} {ABcd AbCd}
test cmdIL-4.24 {DictionaryCompare procedure, international characters} {hasIsoLocale} {
::tcltest::set_iso8859_1_locale
- set result [lsort -dictionary "a b c A B C ã Ä"]
+ set result [lsort -dictionary "a b c A B C \xe3 \xc4"]
::tcltest::restore_locale
set result
-} "A a B b C c ã Ä"
+} "A a B b C c \xe3 \xc4"
test cmdIL-4.25 {DictionaryCompare procedure, international characters} {hasIsoLocale} {
::tcltest::set_iso8859_1_locale
- set result [lsort -dictionary "a23ã a23Å a23ä"]
+ set result [lsort -dictionary "a23\xe3 a23\xc5 a23\xe4"]
::tcltest::restore_locale
set result
-} "a23ã a23ä a23Å"
+} "a23\xe3 a23\xe4 a23\xc5"
test cmdIL-4.26 {DefaultCompare procedure, signed characters} {
set l [lsort [list "abc\200" "abc"]]
set viewlist {}
@@ -475,10 +398,10 @@ test cmdIL-4.36 {SortCompare procedure, UTF-8 with -nocase option} {
scan [lsort -ascii -nocase [list \u101 \u100]] %c%c%c
} {257 32 256}
test cmdIL-4.37 {SortCompare procedure, UTF-8 with -nocase option} {
- scan [lsort -ascii -nocase [list a\x00a a]] %c%c%c%c%c
+ scan [lsort -ascii -nocase [list a\u0000a a]] %c%c%c%c%c
} {97 32 97 0 97}
test cmdIL-4.38 {SortCompare procedure, UTF-8 with -nocase option} {
- scan [lsort -ascii -nocase [list a a\x00a]] %c%c%c%c%c
+ scan [lsort -ascii -nocase [list a a\u0000a]] %c%c%c%c%c
} {97 32 97 0 97}
test cmdIL-5.1 {lsort with list style index} {
@@ -517,96 +440,115 @@ test cmdIL-5.5 {lsort with list style index and sharing} -body {
foreach e $l {lappend n [list [expr {rand()}] $e]}
lindex [lsort -real -index $l $n] 1 1
}
- expr {srand(1)}
+ expr srand(1)
test_lsort 0
} -result 0 -cleanup {
rename test_lsort ""
}
-test cmdIL-5.6 {lsort with multiple list-style index options} {
- lsort -index {1 2 3} -index 0 {{a b} {c d} {b e}}
-} {{a b} {b e} {c d}}
-test cmdIL-5.7 {lsort memory exhaustion} -constraints {testWithLimit} -body {
- # test it in child process (with limited address space) ca. 80MB extra memory
- # on x64 system it would be not enough to sort 4M items (the half 2M only),
- # warn and skip if no error (enough memory) or error by list creation:
- testWithLimit \
- -warn-on-code 0 -warn-on-alloc-error 1 \
- -addmem [expr {$tcl_platform(pointerSize)*4000000 + $tcl_platform(pointerSize)*3*2000000}] \
- {
- # create list and get length (avoid too long output in interactive shells):
- llength [set l [lrepeat 4000000 ""]]
- # test OOM:
- llength [lsort $l]
- }
- # expecting error no memory by sort
-} -returnCodes 1 -result {no enough memory to proccess sort of 4000000 items}
# Compiled version
-test cmdIL-6.1 {lassign command syntax} -returnCodes error -body {
- apply {{} { lassign }}
-} -result {wrong # args: should be "lassign list ?varName ...?"}
-test cmdIL-6.2 {lassign command syntax} {
- apply {{} { lassign x }}
-} x
+test cmdIL-6.1 {lassign command syntax} -body {
+ proc testLassign {} {
+ lassign
+ }
+ testLassign
+} -returnCodes 1 -cleanup {
+ rename testLassign {}
+} -result {wrong # args: should be "lassign list varName ?varName ...?"}
+test cmdIL-6.2 {lassign command syntax} -body {
+ proc testLassign {} {
+ lassign x
+ }
+ testLassign
+} -returnCodes 1 -cleanup {
+ rename testLassign {}
+} -result {wrong # args: should be "lassign list varName ?varName ...?"}
test cmdIL-6.3 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
list [lassign a x] $x
- }}
-} -result {{} a}
+ }
+ testLassign
+} -result {{} a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.4 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
set y FAIL
list [lassign a x y] $x $y
- }}
-} -result {{} a {}}
+ }
+ testLassign
+} -result {{} a {}} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.5 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
set y FAIL
list [lassign {a b} x y] $x $y
- }}
-} -result {{} a b}
+ }
+ testLassign
+} -result {{} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.6 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
set y FAIL
list [lassign {a b c} x y] $x $y
- }}
-} -result {c a b}
+ }
+ testLassign
+} -result {c a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.7 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
set y FAIL
list [lassign {a b c d} x y] $x $y
- }}
-} -result {{c d} a b}
+ }
+ testLassign
+} -result {{c d} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.8 {lassign command - list format error} -body {
- apply {{} {
+ proc testLassign {} {
set x FAIL
set y FAIL
list [catch {lassign {a {b}c d} x y} msg] $msg $x $y
- }}
-} -result {1 {list element in braces followed by "c" instead of space} FAIL FAIL}
+ }
+ testLassign
+} -result {1 {list element in braces followed by "c" instead of space} FAIL FAIL} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.9 {lassign command - assignment to arrays} -body {
- apply {{} {
+ proc testLassign {} {
list [lassign {a b} x(x)] $x(x)
- }}
-} -result {b a}
+ }
+ testLassign
+} -result {b a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.10 {lassign command - variable update error} -body {
- apply {{} {
+ proc testLassign {} {
set x(x) {}
lassign a x
- }}
-} -returnCodes error -result {can't set "x": variable is array}
+ }
+ testLassign
+} -returnCodes 1 -result {can't set "x": variable is array} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.11 {lassign command - variable update error} -body {
- apply {{} {
+ proc testLassign {} {
set x(x) {}
set y FAIL
list [catch {lassign a y x} msg] $msg $y
- }}
-} -result {1 {can't set "x": variable is array} a}
+ }
+ testLassign
+} -result {1 {can't set "x": variable is array} a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.12 {lassign command - memory leak testing} -setup {
unset -nocomplain x y
set x(x) {}
@@ -635,86 +577,119 @@ test cmdIL-6.12 {lassign command - memory leak testing} -setup {
rename stress {}
}
# Force non-compiled version
-test cmdIL-6.13 {lassign command syntax} -returnCodes error -body {
- apply {{} {
+test cmdIL-6.13 {lassign command syntax} -body {
+ proc testLassign {} {
set lassign lassign
$lassign
- }}
-} -result {wrong # args: should be "lassign list ?varName ...?"}
-test cmdIL-6.14 {lassign command syntax} {
- apply {{} {
+ }
+ testLassign
+} -returnCodes 1 -cleanup {
+ rename testLassign {}
+} -result {wrong # args: should be "lassign list varName ?varName ...?"}
+test cmdIL-6.14 {lassign command syntax} -body {
+ proc testLassign {} {
set lassign lassign
$lassign x
- }}
-} x
+ }
+ testLassign
+} -returnCodes 1 -cleanup {
+ rename testLassign {}
+} -result {wrong # args: should be "lassign list varName ?varName ...?"}
test cmdIL-6.15 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
list [$lassign a x] $x
- }}
-} -result {{} a}
+ }
+ testLassign
+} -result {{} a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.16 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
set y FAIL
list [$lassign a x y] $x $y
- }}
-} -result {{} a {}}
+ }
+ testLassign
+} -result {{} a {}} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.17 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
set y FAIL
list [$lassign {a b} x y] $x $y
- }}
-} -result {{} a b}
+ }
+ testLassign
+} -result {{} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.18 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
set y FAIL
list [$lassign {a b c} x y] $x $y
- }}
-} -result {c a b}
+ }
+ testLassign
+} -result {c a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.19 {lassign command} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
set y FAIL
list [$lassign {a b c d} x y] $x $y
- }}
-} -result {{c d} a b}
+ }
+ testLassign
+} -result {{c d} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.20 {lassign command - list format error} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x FAIL
set y FAIL
list [catch {$lassign {a {b}c d} x y} msg] $msg $x $y
- }}
-} -result {1 {list element in braces followed by "c" instead of space} FAIL FAIL}
+ }
+ testLassign
+} -result {1 {list element in braces followed by "c" instead of space} FAIL FAIL} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.21 {lassign command - assignment to arrays} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
list [$lassign {a b} x(x)] $x(x)
- }}
-} -result {b a}
+ }
+ testLassign
+} -result {b a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.22 {lassign command - variable update error} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x(x) {}
$lassign a x
- }}
-} -returnCodes 1 -result {can't set "x": variable is array}
+ }
+ testLassign
+} -returnCodes 1 -result {can't set "x": variable is array} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.23 {lassign command - variable update error} -body {
- apply {{} {
+ proc testLassign {} {
set lassign lassign
set x(x) {}
set y FAIL
list [catch {$lassign a y x} msg] $msg $y
- }}
-} -result {1 {can't set "x": variable is array} a}
+ }
+ testLassign
+} -result {1 {can't set "x": variable is array} a} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.24 {lassign command - memory leak testing} -setup {
set x(x) {}
set y FAIL
@@ -744,18 +719,24 @@ test cmdIL-6.24 {lassign command - memory leak testing} -setup {
}
# Assorted shimmering problems
test cmdIL-6.25 {lassign command - shimmering protection} -body {
- apply {{} {
+ proc testLassign {} {
set x {a b c}
list [lassign $x $x y] $x [set $x] $y
- }}
-} -result {c {a b c} a b}
+ }
+ testLassign
+} -result {c {a b c} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-6.26 {lassign command - shimmering protection} -body {
- apply {{} {
+ proc testLassign {} {
set x {a b c}
set lassign lassign
list [$lassign $x $x y] $x [set $x] $y
- }}
-} -result {c {a b c} a b}
+ }
+ testLassign
+} -result {c {a b c} a b} -cleanup {
+ rename testLassign {}
+}
test cmdIL-7.1 {lreverse command} -body {
lreverse
@@ -779,7 +760,9 @@ test cmdIL-7.6 {lreverse command - unshared object [Bug 1672585]} {
test cmdIL-7.7 {lreverse command - empty object [Bug 1876793]} {
lreverse [list]
} {}
-test cmdIL-7.8 {lreverse command - shared internalrep [Bug 1675044]} -setup {
+
+testConstraint testobj [llength [info commands testobj]]
+test cmdIL-7.8 {lreverse command - shared intrep [Bug 1675044]} -setup {
teststringobj set 1 {1 2 3}
testobj convert 1 list
testobj duplicate 1 2
@@ -795,52 +778,6 @@ test cmdIL-7.8 {lreverse command - shared internalrep [Bug 1675044]} -setup {
rename K {}
} -result 1
-test cmdIL-8.1 {lremove command: error path} -returnCodes error -body {
- lremove
-} -result {wrong # args: should be "lremove list ?index ...?"}
-test cmdIL-8.2 {lremove command: error path} -returnCodes error -body {
- lremove {{}{}}
-} -result {list element in braces followed by "{}" instead of space}
-test cmdIL-8.3 {lremove command: error path} -returnCodes error -body {
- lremove {a b c} gorp
-} -result {bad index "gorp": must be integer?[+-]integer? or end?[+-]integer?}
-test cmdIL-8.4 {lremove command: no indices} -body {
- lremove {a b c}
-} -result {a b c}
-test cmdIL-8.5 {lremove command: before start} -body {
- lremove {a b c} -1
-} -result {a b c}
-test cmdIL-8.6 {lremove command: after end} -body {
- lremove {a b c} 3
-} -result {a b c}
-test cmdIL-8.7 {lremove command} -body {
- lremove {a b c} 0
-} -result {b c}
-test cmdIL-8.8 {lremove command} -body {
- lremove {a b c} 1
-} -result {a c}
-test cmdIL-8.9 {lremove command} -body {
- lremove {a b c} end
-} -result {a b}
-test cmdIL-8.10 {lremove command} -body {
- lremove {a b c} end-1
-} -result {a c}
-test cmdIL-8.11 {lremove command} -body {
- lremove {a b c d e} 1 3
-} -result {a c e}
-test cmdIL-8.12 {lremove command} -body {
- lremove {a b c d e} 3 1
-} -result {a c e}
-test cmdIL-8.13 {lremove command: same index twice} -body {
- lremove {a b c d e} 2 2
-} -result {a b d e}
-test cmdIL-8.14 {lremove command: same index twice} -body {
- lremove {a b c d e} 3 end-1
-} -result {a b c e}
-test cmdIL-8.15 {lremove command: many indices} -body {
- lremove {a b c d e} 1 3 1 4 0
-} -result {c}
-
# This belongs in info test, but adding tests there breaks tests
# that compute source file line numbers.
test info-20.6 {Bug 3587651} -setup {
@@ -849,7 +786,8 @@ test info-20.6 {Bug 3587651} -setup {
}}}} -body { namespace eval my {expr {"demo" in [info functions]}}} -cleanup {
namespace delete my
} -result 1
-
+
+
# cleanup
::tcltest::cleanupTests
return