set.test
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:17k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Commands covered:  set
  2. #
  3. # This file contains a collection of tests for one or more of the Tcl
  4. # built-in commands.  Sourcing this file into Tcl runs the tests and
  5. # generates output for errors.  No output means no errors were found.
  6. #
  7. # Copyright (c) 1996 Sun Microsystems, Inc.
  8. # Copyright (c) 1998-1999 by Scriptics Corporation.
  9. #
  10. # See the file "license.terms" for information on usage and redistribution
  11. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12. #
  13. # RCS: @(#) $Id: set.test,v 1.8 2000/04/10 17:19:04 ericm Exp $
  14. if {[lsearch [namespace children] ::tcltest] == -1} {
  15.     package require tcltest
  16.     namespace import -force ::tcltest::*
  17. }
  18. catch {unset x}
  19. catch {unset i}
  20. test set-1.1 {TclCompileSetCmd: missing variable name} {
  21.     list [catch {set} msg] $msg
  22. } {1 {wrong # args: should be "set varName ?newValue?"}}
  23. test set-1.2 {TclCompileSetCmd: simple variable name} {
  24.     set i 10
  25.     list [set i] $i
  26. } {10 10}
  27. test set-1.3 {TclCompileSetCmd: error compiling variable name} {
  28.     set i 10
  29.     catch {set "i"xxx} msg
  30.     set msg
  31. } {extra characters after close-quote}
  32. test set-1.4 {TclCompileSetCmd: simple variable name in quotes} {
  33.     set i 17
  34.     list [set "i"] $i
  35. } {17 17}
  36. test set-1.5 {TclCompileSetCmd: simple variable name in braces} {
  37.     catch {unset {a simple var}}
  38.     set {a simple var} 27
  39.     list [set {a simple var}] ${a simple var}
  40. } {27 27}
  41. test set-1.6 {TclCompileSetCmd: simple array variable name} {
  42.     catch {unset a}
  43.     set a(foo) 37
  44.     list [set a(foo)] $a(foo)
  45. } {37 37}
  46. test set-1.7 {TclCompileSetCmd: non-simple (computed) variable name} {
  47.     set x "i"
  48.     set i 77
  49.     list [set $x] $i
  50. } {77 77}
  51. test set-1.8 {TclCompileSetCmd: non-simple (computed) variable name} {
  52.     set x "i"
  53.     set i 77
  54.     list [set [set x] 2] $i
  55. } {2 2}
  56. test set-1.9 {TclCompileSetCmd: 3rd arg => assignment} {
  57.     set i "abcdef"
  58.     list [set i] $i
  59. } {abcdef abcdef}
  60. test set-1.10 {TclCompileSetCmd: only two args => just getting value} {
  61.     set i {one two}
  62.     set i
  63. } {one two}
  64. test set-1.11 {TclCompileSetCmd: simple global name} {
  65.     proc p {} {
  66.         global i
  67.         set i 54
  68.         set i
  69.     }
  70.     p
  71. } {54}
  72. test set-1.12 {TclCompileSetCmd: simple local name} {
  73.     proc p {bar} {
  74.         set foo $bar
  75.         set foo
  76.     }
  77.     p 999
  78. } {999}
  79. test set-1.13 {TclCompileSetCmd: simple but new (unknown) local name} {
  80.     proc p {} {
  81.         set bar
  82.     }
  83.     catch {p} msg
  84.     set msg
  85. } {can't read "bar": no such variable}
  86. test set-1.14 {TclCompileSetCmd: simple local name, >255 locals} {
  87.     proc 260locals {} {
  88.         # create 260 locals (the last ones with index > 255)
  89.         set a0 0; set a1 0; set a2 0; set a3 0; set a4 0
  90.         set a5 0; set a6 0; set a7 0; set a8 0; set a9 0
  91.         set b0 0; set b1 0; set b2 0; set b3 0; set b4 0
  92.         set b5 0; set b6 0; set b7 0; set b8 0; set b9 0
  93.         set c0 0; set c1 0; set c2 0; set c3 0; set c4 0
  94.         set c5 0; set c6 0; set c7 0; set c8 0; set c9 0
  95.         set d0 0; set d1 0; set d2 0; set d3 0; set d4 0
  96.         set d5 0; set d6 0; set d7 0; set d8 0; set d9 0
  97.         set e0 0; set e1 0; set e2 0; set e3 0; set e4 0
  98.         set e5 0; set e6 0; set e7 0; set e8 0; set e9 0
  99.         set f0 0; set f1 0; set f2 0; set f3 0; set f4 0
  100.         set f5 0; set f6 0; set f7 0; set f8 0; set f9 0
  101.         set g0 0; set g1 0; set g2 0; set g3 0; set g4 0
  102.         set g5 0; set g6 0; set g7 0; set g8 0; set g9 0
  103.         set h0 0; set h1 0; set h2 0; set h3 0; set h4 0
  104.         set h5 0; set h6 0; set h7 0; set h8 0; set h9 0
  105.         set i0 0; set i1 0; set i2 0; set i3 0; set i4 0
  106.         set i5 0; set i6 0; set i7 0; set i8 0; set i9 0
  107.         set j0 0; set j1 0; set j2 0; set j3 0; set j4 0
  108.         set j5 0; set j6 0; set j7 0; set j8 0; set j9 0
  109.         set k0 0; set k1 0; set k2 0; set k3 0; set k4 0
  110.         set k5 0; set k6 0; set k7 0; set k8 0; set k9 0
  111.         set l0 0; set l1 0; set l2 0; set l3 0; set l4 0
  112.         set l5 0; set l6 0; set l7 0; set l8 0; set l9 0
  113.         set m0 0; set m1 0; set m2 0; set m3 0; set m4 0
  114.         set m5 0; set m6 0; set m7 0; set m8 0; set m9 0
  115.         set n0 0; set n1 0; set n2 0; set n3 0; set n4 0
  116.         set n5 0; set n6 0; set n7 0; set n8 0; set n9 0
  117.         set o0 0; set o1 0; set o2 0; set o3 0; set o4 0
  118.         set o5 0; set o6 0; set o7 0; set o8 0; set o9 0
  119.         set p0 0; set p1 0; set p2 0; set p3 0; set p4 0
  120.         set p5 0; set p6 0; set p7 0; set p8 0; set p9 0
  121.         set q0 0; set q1 0; set q2 0; set q3 0; set q4 0
  122.         set q5 0; set q6 0; set q7 0; set q8 0; set q9 0
  123.         set r0 0; set r1 0; set r2 0; set r3 0; set r4 0
  124.         set r5 0; set r6 0; set r7 0; set r8 0; set r9 0
  125.         set s0 0; set s1 0; set s2 0; set s3 0; set s4 0
  126.         set s5 0; set s6 0; set s7 0; set s8 0; set s9 0
  127.         set t0 0; set t1 0; set t2 0; set t3 0; set t4 0
  128.         set t5 0; set t6 0; set t7 0; set t8 0; set t9 0
  129.         set u0 0; set u1 0; set u2 0; set u3 0; set u4 0
  130.         set u5 0; set u6 0; set u7 0; set u8 0; set u9 0
  131.         set v0 0; set v1 0; set v2 0; set v3 0; set v4 0
  132.         set v5 0; set v6 0; set v7 0; set v8 0; set v9 0
  133.         set w0 0; set w1 0; set w2 0; set w3 0; set w4 0
  134.         set w5 0; set w6 0; set w7 0; set w8 0; set w9 0
  135.         set x0 0; set x1 0; set x2 0; set x3 0; set x4 0
  136.         set x5 0; set x6 0; set x7 0; set x8 0; set x9 0
  137.         set y0 0; set y1 0; set y2 0; set y3 0; set y4 0
  138.         set y5 0; set y6 0; set y7 0; set y8 0; set y9 0
  139.         set z0 0; set z1 0; set z2 0; set z3 0; set z4 0
  140.         set z5 0; set z6 0; set z7 0; set z8 0; set z9 1234
  141.     }
  142.     260locals
  143. } {1234}
  144. test set-1.15 {TclCompileSetCmd: variable is array} {
  145.     catch {unset a}
  146.     set x 27
  147.     set x [set a(foo) 11]
  148.     catch {unset a}
  149.     set x
  150. } 11
  151. test set-1.16 {TclCompileSetCmd: variable is array, elem substitutions} {
  152.     catch {unset a}
  153.     set i 5
  154.     set x 789
  155.     set a(foo5) 27
  156.     set x [set a(foo$i)]
  157.     catch {unset a}
  158.     set x
  159. } 27
  160. test set-1.17 {TclCompileSetCmd: doing assignment, simple int} {
  161.     set i 5
  162.     set i 123
  163. } 123
  164. test set-1.18 {TclCompileSetCmd: doing assignment, simple int} {
  165.     set i 5
  166.     set i -100
  167. } -100
  168. test set-1.19 {TclCompileSetCmd: doing assignment, simple but not int} {
  169.     set i 5
  170.     set i 0x12MNOP
  171.     set i
  172. } {0x12MNOP}
  173. test set-1.20 {TclCompileSetCmd: doing assignment, in quotes} {
  174.     set i 25
  175.     set i "-100"
  176. } -100
  177. test set-1.21 {TclCompileSetCmd: doing assignment, in braces} {
  178.     set i 24
  179.     set i {126}
  180. } 126
  181. test set-1.22 {TclCompileSetCmd: doing assignment, large int} {
  182.     set i 5
  183.     set i 200000
  184. } 200000
  185. test set-1.23 {TclCompileSetCmd: doing assignment, formatted int != int} {
  186.     set i 25
  187.     set i 000012345     ;# an octal literal == 5349 decimal
  188.     list $i [incr i]
  189. } {000012345 5350}
  190. test set-1.24 {TclCompileSetCmd: too many arguments} {
  191.     set i 10
  192.     catch {set i 20 30} msg
  193.     set msg
  194. } {wrong # args: should be "set varName ?newValue?"}
  195. test set-1.25 {TclCompileSetCmd: var is array, braced (no subs)} {
  196.     # This was a known error in 8.1a* - 8.2.1
  197.     catch {unset array}
  198.     set {array($foo)} 5
  199. } 5
  200. test set-1.26 {TclCompileSetCmd: various array constructs} {
  201.     # Test all kinds of array constructs that TclCompileSetCmd
  202.     # may feel inclined to tamper with.
  203.     proc p {} {
  204. set a x
  205. set be(hej) 1 ; # hej
  206. set be($a) 1 ; # x
  207. set {be($a)} 1 ; # $a
  208. set be($a,hej) 1 ; # x,hej
  209. set be($a,$a) 5 ; # x,x
  210. set be(c($a) 1 ; # c(x
  211. set be(ww) 1 ; # ww
  212. set be(a:$a) [set be(x,$a)] ; # a:x
  213. set be(hej,$be($a,hej),hej) 1 ; # hej,1,hej
  214. set be([string range hugge 0 2]) 1 ; # hug
  215. set be(a a) 1 ; # a a
  216. set be($a ,[string range hugge 1 3],hej) 1 ; # x ,ugg,hej
  217. set be($a,h"ej) 1 ; # x,h"ej
  218. set be([string range "a b c" 2 end]) 1 ; # b c
  219. set [string range bet 0 1](foo) 1 ; # foo
  220. set be([set be(a:$a)][set be($a)]) 1 ; # 51
  221. return [lsort [array names be]]
  222.     }
  223.     p
  224. } [lsort {hej x $a x,hej x,x c(x ww a:x hej,1,hej hug {a a} {x ,ugg,hej} x,h"ej
  225. {b c} foo 51}]; # " just a matching end quote
  226. test set-2.1 {set command: runtime error, bad variable name} {
  227.     list [catch {set {"foo}} msg] $msg $errorInfo
  228. } {1 {can't read ""foo": no such variable} {can't read ""foo": no such variable
  229.     while executing
  230. "set {"foo}"}}
  231. test set-2.2 {set command: runtime error, not array variable} {
  232.     catch {unset b}
  233.     set b 44
  234.     list [catch {set b(123)} msg] $msg
  235. } {1 {can't read "b(123)": variable isn't array}}
  236. test set-2.3 {set command: runtime error, errors in reading variables} {
  237.     catch {unset a}
  238.     set a(6) 44
  239.     list [catch {set a(18)} msg] $msg
  240. } {1 {can't read "a(18)": no such element in array}}
  241. test set-2.4 {set command: runtime error, readonly variable} {
  242.     proc readonly args {error "variable is read-only"}
  243.     set x 123
  244.     trace var x w readonly
  245.     list [catch {set x 1} msg] $msg $errorInfo
  246. } {1 {can't set "x": variable is read-only} {can't set "x": variable is read-only
  247.     while executing
  248. "set x 1"}}
  249. test set-2.5 {set command: runtime error, basic array operations} {
  250.     list [catch {set a(other)} msg] $msg
  251. } {1 {can't read "a(other)": no such element in array}}
  252. test set-2.6 {set command: runtime error, basic array operations} {
  253.     list [catch {set a} msg] $msg
  254. } {1 {can't read "a": variable is array}}
  255. # Test the uncompiled version of set
  256. catch {unset a}
  257. catch {unset b}
  258. catch {unset i}
  259. catch {unset x}
  260. test set-3.1 {uncompiled set command: missing variable name} {
  261.     set z set
  262.     list [catch {$z} msg] $msg
  263. } {1 {wrong # args: should be "set varName ?newValue?"}}
  264. test set-3.2 {uncompiled set command: simple variable name} {
  265.     set z set
  266.     $z i 10
  267.     list [$z i] $i
  268. } {10 10}
  269. test set-3.3 {uncompiled set command: error compiling variable name} {
  270.     set z set
  271.     $z i 10
  272.     catch {$z "i"xxx} msg
  273.     $z msg
  274. } {extra characters after close-quote}
  275. test set-3.4 {uncompiled set command: simple variable name in quotes} {
  276.     set z set
  277.     $z i 17
  278.     list [$z "i"] $i
  279. } {17 17}
  280. test set-3.5 {uncompiled set command: simple variable name in braces} {
  281.     set z set
  282.     catch {unset {a simple var}}
  283.     $z {a simple var} 27
  284.     list [$z {a simple var}] ${a simple var}
  285. } {27 27}
  286. test set-3.6 {uncompiled set command: simple array variable name} {
  287.     set z set
  288.     catch {unset a}
  289.     $z a(foo) 37
  290.     list [$z a(foo)] $a(foo)
  291. } {37 37}
  292. test set-3.7 {uncompiled set command: non-simple (computed) variable name} {
  293.     set z set
  294.     $z x "i"
  295.     $z i 77
  296.     list [$z $x] $i
  297. } {77 77}
  298. test set-3.8 {uncompiled set command: non-simple (computed) variable name} {
  299.     set z set
  300.     $z x "i"
  301.     $z i 77
  302.     list [$z [$z x] 2] $i
  303. } {2 2}
  304. test set-3.9 {uncompiled set command: 3rd arg => assignment} {
  305.     set z set
  306.     $z i "abcdef"
  307.     list [$z i] $i
  308. } {abcdef abcdef}
  309. test set-3.10 {uncompiled set command: only two args => just getting value} {
  310.     set z set
  311.     $z i {one two}
  312.     $z i
  313. } {one two}
  314. test set-3.11 {uncompiled set command: simple global name} {
  315.     proc p {} {
  316. set z set
  317.         global i
  318.         $z i 54
  319.         $z i
  320.     }
  321.     p
  322. } {54}
  323. test set-3.12 {uncompiled set command: simple local name} {
  324.     proc p {bar} {
  325. set z set
  326.         $z foo $bar
  327.         $z foo
  328.     }
  329.     p 999
  330. } {999}
  331. test set-3.13 {uncompiled set command: simple but new (unknown) local name} {
  332.     set z set
  333.     proc p {} {
  334. set z set
  335.         $z bar
  336.     }
  337.     catch {p} msg
  338.     $z msg
  339. } {can't read "bar": no such variable}
  340. test set-3.14 {uncompiled set command: simple local name, >255 locals} {
  341.     proc 260locals {} {
  342. set z set
  343.         # create 260 locals (the last ones with index > 255)
  344.         $z a0 0; $z a1 0; $z a2 0; $z a3 0; $z a4 0
  345.         $z a5 0; $z a6 0; $z a7 0; $z a8 0; $z a9 0
  346.         $z b0 0; $z b1 0; $z b2 0; $z b3 0; $z b4 0
  347.         $z b5 0; $z b6 0; $z b7 0; $z b8 0; $z b9 0
  348.         $z c0 0; $z c1 0; $z c2 0; $z c3 0; $z c4 0
  349.         $z c5 0; $z c6 0; $z c7 0; $z c8 0; $z c9 0
  350.         $z d0 0; $z d1 0; $z d2 0; $z d3 0; $z d4 0
  351.         $z d5 0; $z d6 0; $z d7 0; $z d8 0; $z d9 0
  352.         $z e0 0; $z e1 0; $z e2 0; $z e3 0; $z e4 0
  353.         $z e5 0; $z e6 0; $z e7 0; $z e8 0; $z e9 0
  354.         $z f0 0; $z f1 0; $z f2 0; $z f3 0; $z f4 0
  355.         $z f5 0; $z f6 0; $z f7 0; $z f8 0; $z f9 0
  356.         $z g0 0; $z g1 0; $z g2 0; $z g3 0; $z g4 0
  357.         $z g5 0; $z g6 0; $z g7 0; $z g8 0; $z g9 0
  358.         $z h0 0; $z h1 0; $z h2 0; $z h3 0; $z h4 0
  359.         $z h5 0; $z h6 0; $z h7 0; $z h8 0; $z h9 0
  360.         $z i0 0; $z i1 0; $z i2 0; $z i3 0; $z i4 0
  361.         $z i5 0; $z i6 0; $z i7 0; $z i8 0; $z i9 0
  362.         $z j0 0; $z j1 0; $z j2 0; $z j3 0; $z j4 0
  363.         $z j5 0; $z j6 0; $z j7 0; $z j8 0; $z j9 0
  364.         $z k0 0; $z k1 0; $z k2 0; $z k3 0; $z k4 0
  365.         $z k5 0; $z k6 0; $z k7 0; $z k8 0; $z k9 0
  366.         $z l0 0; $z l1 0; $z l2 0; $z l3 0; $z l4 0
  367.         $z l5 0; $z l6 0; $z l7 0; $z l8 0; $z l9 0
  368.         $z m0 0; $z m1 0; $z m2 0; $z m3 0; $z m4 0
  369.         $z m5 0; $z m6 0; $z m7 0; $z m8 0; $z m9 0
  370.         $z n0 0; $z n1 0; $z n2 0; $z n3 0; $z n4 0
  371.         $z n5 0; $z n6 0; $z n7 0; $z n8 0; $z n9 0
  372.         $z o0 0; $z o1 0; $z o2 0; $z o3 0; $z o4 0
  373.         $z o5 0; $z o6 0; $z o7 0; $z o8 0; $z o9 0
  374.         $z p0 0; $z p1 0; $z p2 0; $z p3 0; $z p4 0
  375.         $z p5 0; $z p6 0; $z p7 0; $z p8 0; $z p9 0
  376.         $z q0 0; $z q1 0; $z q2 0; $z q3 0; $z q4 0
  377.         $z q5 0; $z q6 0; $z q7 0; $z q8 0; $z q9 0
  378.         $z r0 0; $z r1 0; $z r2 0; $z r3 0; $z r4 0
  379.         $z r5 0; $z r6 0; $z r7 0; $z r8 0; $z r9 0
  380.         $z s0 0; $z s1 0; $z s2 0; $z s3 0; $z s4 0
  381.         $z s5 0; $z s6 0; $z s7 0; $z s8 0; $z s9 0
  382.         $z t0 0; $z t1 0; $z t2 0; $z t3 0; $z t4 0
  383.         $z t5 0; $z t6 0; $z t7 0; $z t8 0; $z t9 0
  384.         $z u0 0; $z u1 0; $z u2 0; $z u3 0; $z u4 0
  385.         $z u5 0; $z u6 0; $z u7 0; $z u8 0; $z u9 0
  386.         $z v0 0; $z v1 0; $z v2 0; $z v3 0; $z v4 0
  387.         $z v5 0; $z v6 0; $z v7 0; $z v8 0; $z v9 0
  388.         $z w0 0; $z w1 0; $z w2 0; $z w3 0; $z w4 0
  389.         $z w5 0; $z w6 0; $z w7 0; $z w8 0; $z w9 0
  390.         $z x0 0; $z x1 0; $z x2 0; $z x3 0; $z x4 0
  391.         $z x5 0; $z x6 0; $z x7 0; $z x8 0; $z x9 0
  392.         $z y0 0; $z y1 0; $z y2 0; $z y3 0; $z y4 0
  393.         $z y5 0; $z y6 0; $z y7 0; $z y8 0; $z y9 0
  394.         $z z0 0; $z z1 0; $z z2 0; $z z3 0; $z z4 0
  395.         $z z5 0; $z z6 0; $z z7 0; $z z8 0; $z z9 1234
  396.     }
  397.     260locals
  398. } {1234}
  399. test set-3.15 {uncompiled set command: variable is array} {
  400.     set z set
  401.     catch {unset a}
  402.     $z x 27
  403.     $z x [$z a(foo) 11]
  404.     catch {unset a}
  405.     $z x
  406. } 11
  407. test set-3.16 {uncompiled set command: variable is array, elem substitutions} {
  408.     set z set
  409.     catch {unset a}
  410.     $z i 5
  411.     $z x 789
  412.     $z a(foo5) 27
  413.     $z x [$z a(foo$i)]
  414.     catch {unset a}
  415.     $z x
  416. } 27
  417. test set-3.17 {uncompiled set command: doing assignment, simple int} {
  418.     set z set
  419.     $z i 5
  420.     $z i 123
  421. } 123
  422. test set-3.18 {uncompiled set command: doing assignment, simple int} {
  423.     set z set
  424.     $z i 5
  425.     $z i -100
  426. } -100
  427. test set-3.19 {uncompiled set command: doing assignment, simple but not int} {
  428.     set z set
  429.     $z i 5
  430.     $z i 0x12MNOP
  431.     $z i
  432. } {0x12MNOP}
  433. test set-3.20 {uncompiled set command: doing assignment, in quotes} {
  434.     set z set
  435.     $z i 25
  436.     $z i "-100"
  437. } -100
  438. test set-3.21 {uncompiled set command: doing assignment, in braces} {
  439.     set z set
  440.     $z i 24
  441.     $z i {126}
  442. } 126
  443. test set-3.22 {uncompiled set command: doing assignment, large int} {
  444.     set z set
  445.     $z i 5
  446.     $z i 200000
  447. } 200000
  448. test set-3.23 {uncompiled set command: doing assignment, formatted int != int} {
  449.     set z set
  450.     $z i 25
  451.     $z i 000012345     ;# an octal literal == 5349 decimal
  452.     list $i [incr i]
  453. } {000012345 5350}
  454. test set-3.24 {uncompiled set command: too many arguments} {
  455.     set z set
  456.     $z i 10
  457.     catch {$z i 20 30} msg
  458.     $z msg
  459. } {wrong # args: should be "set varName ?newValue?"}
  460. test set-4.1 {uncompiled set command: runtime error, bad variable name} {
  461.     set z set
  462.     list [catch {$z {"foo}} msg] $msg $errorInfo
  463. } {1 {can't read ""foo": no such variable} {can't read ""foo": no such variable
  464.     while executing
  465. "$z {"foo}"}}
  466. test set-4.2 {uncompiled set command: runtime error, not array variable} {
  467.     set z set
  468.     catch {unset b}
  469.     $z b 44
  470.     list [catch {$z b(123)} msg] $msg
  471. } {1 {can't read "b(123)": variable isn't array}}
  472. test set-4.3 {uncompiled set command: runtime error, errors in reading variables} {
  473.      set z set
  474.    catch {unset a}
  475.     $z a(6) 44
  476.     list [catch {$z a(18)} msg] $msg
  477. } {1 {can't read "a(18)": no such element in array}}
  478. test set-4.4 {uncompiled set command: runtime error, readonly variable} {
  479.     set z set
  480.     proc readonly args {error "variable is read-only"}
  481.     $z x 123
  482.     trace var x w readonly
  483.     list [catch {$z x 1} msg] $msg $errorInfo
  484. } {1 {can't set "x": variable is read-only} {can't set "x": variable is read-only
  485.     while executing
  486. "$z x 1"}}
  487. test set-4.5 {uncompiled set command: runtime error, basic array operations} {
  488.     set z set
  489.     list [catch {$z a(other)} msg] $msg
  490. } {1 {can't read "a(other)": no such element in array}}
  491. test set-4.6 {set command: runtime error, basic array operations} {
  492.     set z set
  493.     list [catch {$z a} msg] $msg
  494. } {1 {can't read "a": variable is array}}
  495. # cleanup
  496. catch {unset a}
  497. catch {unset b}
  498. catch {unset i}
  499. catch {unset x}
  500. catch {unset z}
  501. ::tcltest::cleanupTests
  502. return