summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-04-23 05:23:01 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-04-23 05:23:01 (GMT)
commit9cd23041f3a73559c43adb6120b1ccdf4bd15604 (patch)
tree9d892f7c1dc31aa2cccbc6d9344a246c1354f1ea /tests
parent08d2d4c09be5b73ac1afa73c49d4cad5aff59cf2 (diff)
parent00afea1c26cff64d1347e8c667dac60dc0a8f3d8 (diff)
downloadtcl-9cd23041f3a73559c43adb6120b1ccdf4bd15604.zip
tcl-9cd23041f3a73559c43adb6120b1ccdf4bd15604.tar.gz
tcl-9cd23041f3a73559c43adb6120b1ccdf4bd15604.tar.bz2
Merge 8.7 - [d90fee06d0] (lassign) and [203792a48c] (Utf32ToUtf)
Diffstat (limited to 'tests')
-rw-r--r--tests/bigdata.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/bigdata.test b/tests/bigdata.test
index ced2510..c580fbd 100644
--- a/tests/bigdata.test
+++ b/tests/bigdata.test
@@ -752,17 +752,17 @@ bigtest lappend-bigdata-1 "lappend" {4294967300 4294967300 {1 2 3 4 5 a b c d}}
#
# lassign
-bigtestRO lassign-bigdata-1 "lassign" {0 1 2 3 4 5 6 7 8 9 1} -body {
+bigtestRO lassign-bigdata-1 "lassign" {0 1 2 3 4 5 6 7 8 {9 0 1 2 3 4 5 6 7 8} {6 7 8 9 0 1 2 3 4 5}} -body {
# Unset explicitly before setting to save memory as bigtestRO runs the
# script below twice.
unset -nocomplain l2
- set l2 [lassign $l a b c d e f g h i j]
- list $a $b $c $d $e $f $g $h $i $j [testlutil equal $l2 [bigList 0x100000000]]
+ set l2 [lassign $l a b c d e f g h i]
+ list $a $b $c $d $e $f $g $h $i [lrange $l2 0 9] [lrange $l2 end-9 end]
} -setup {
set l [bigList 0x10000000a]
} -cleanup {
bigClean
-} -constraints bug-d90fee06d0
+}
#
# ledit