summaryrefslogtreecommitdiffstats
path: root/tests/proc.test
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2004-05-02 20:49:55 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2004-05-02 20:49:55 (GMT)
commit0a1f66b1c502875f43acf2671f8d7770a830e4cc (patch)
tree4ef2a6bb90b92ecca5b6376fbdfd5e130c5d76ca /tests/proc.test
parent996718aef341744dcfd658a3b81262bb2aa95bac (diff)
downloadtcl-0a1f66b1c502875f43acf2671f8d7770a830e4cc.zip
tcl-0a1f66b1c502875f43acf2671f8d7770a830e4cc.tar.gz
tcl-0a1f66b1c502875f43acf2671f8d7770a830e4cc.tar.bz2
* generic/tclProc.c (TclObjInvokeProc):
* tests/proc.test (proc-3.6): fix for bad quoting of multi-word proc names in error messages [Bug 942757]
Diffstat (limited to 'tests/proc.test')
-rw-r--r--tests/proc.test7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/proc.test b/tests/proc.test
index 662d56f..ef5f3c4 100644
--- a/tests/proc.test
+++ b/tests/proc.test
@@ -13,7 +13,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: proc.test,v 1.13 2004/03/30 16:22:22 msofer Exp $
+# RCS: @(#) $Id: proc.test,v 1.14 2004/05/02 20:49:56 msofer Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -166,6 +166,11 @@ test proc-3.5 {TclObjInterpProc, any old result is reset before appending error
list [catch {p} msg] $msg
} {1 {wrong # args: should be "p x"}}
+test proc-3.6 {TclObjInterpProc, proper quoting of proc name, Bug 942757} {
+ proc {a b c} {x} {info commands 3m}
+ list [catch {{a b c}} msg] $msg
+} {1 {wrong # args: should be "{a b c} x"}}
+
catch {namespace delete {expand}[namespace children :: test_ns_*]}
catch {rename p ""}
catch {rename {} ""}