85 lines
2.9 KiB
Plaintext
85 lines
2.9 KiB
Plaintext
|
# Commands covered: various
|
||
|
#
|
||
|
# This file contains a collection of miscellaneous Tcl tests that
|
||
|
# don't fit naturally in any of the other test files. Many of these
|
||
|
# tests are pathological cases that caused bugs in earlier Tcl
|
||
|
# releases.
|
||
|
#
|
||
|
# Copyright (c) 1992-1993 The Regents of the University of California.
|
||
|
# All rights reserved.
|
||
|
#
|
||
|
# Permission is hereby granted, without written agreement and without
|
||
|
# license or royalty fees, to use, copy, modify, and distribute this
|
||
|
# software and its documentation for any purpose, provided that the
|
||
|
# above copyright notice and the following two paragraphs appear in
|
||
|
# all copies of this software.
|
||
|
#
|
||
|
# IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
|
||
|
# DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
|
||
|
# OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
|
||
|
# CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
#
|
||
|
# THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
|
||
|
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||
|
# AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
||
|
# ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
|
||
|
# PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
||
|
#
|
||
|
# $Header: /user6/ouster/tcl/tests/RCS/misc.test,v 1.3 93/10/07 11:41:23 ouster Exp $ (Berkeley)
|
||
|
|
||
|
if {[string compare test [info procs test]] == 1} then {source defs}
|
||
|
|
||
|
test misc-1.1 {error in variable ref. in command in array reference} {
|
||
|
proc tstProc {} {
|
||
|
global a
|
||
|
|
||
|
set tst $a([winfo name $zz])
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
}
|
||
|
set msg {}
|
||
|
list [catch tstProc msg] $msg
|
||
|
} {1 {can't read "zz": no such variable}}
|
||
|
test misc-1.2 {error in variable ref. in command in array reference} {
|
||
|
proc tstProc {} "
|
||
|
global a
|
||
|
|
||
|
set tst \$a(\[winfo name \$\{zz)
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
"
|
||
|
set msg {}
|
||
|
list [catch tstProc msg] $msg $errorInfo
|
||
|
} [list 1 {missing close-brace for variable name} \
|
||
|
[format {missing close-brace for variable name
|
||
|
while executing
|
||
|
"winfo name $%szz)
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus commen ..."
|
||
|
(parsing index for array "a")
|
||
|
invoked from within
|
||
|
"set tst $a([winfo name $%szz)
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a bogus comment
|
||
|
# this is a ..."
|
||
|
(procedure "tstProc" line 4)
|
||
|
invoked from within
|
||
|
"tstProc"} \{ \{]]
|