diff options
author | hobbs <hobbs> | 2000-05-03 00:14:35 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-05-03 00:14:35 (GMT) |
commit | 4c8a9811534a3b4a2a4f18a8b336e32f09924f99 (patch) | |
tree | 5628ff7c339091fc70acb302e1df79ed6a1940e9 /tests/rename.test | |
parent | c976f22afb9a851655b7dca553a0ff0dff4175ac (diff) | |
download | tcl-4c8a9811534a3b4a2a4f18a8b336e32f09924f99.zip tcl-4c8a9811534a3b4a2a4f18a8b336e32f09924f99.tar.gz tcl-4c8a9811534a3b4a2a4f18a8b336e32f09924f99.tar.bz2 |
* tests/compile.test:
* tests/init.test:
* tests/proc.test:
* tests/proc-old.test:
* tests/rename.test:
* generic/tclProc.c: reworked error return for procedures with
incorrect args to be like the C Tcl_WrongNumArgs, where a "wrong #
args: ..." message is printed out with the args list.
Diffstat (limited to 'tests/rename.test')
-rw-r--r-- | tests/rename.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/rename.test b/tests/rename.test index 246dbf8..bb71112 100644 --- a/tests/rename.test +++ b/tests/rename.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: rename.test,v 1.8 2000/04/10 17:19:03 ericm Exp $ +# RCS: @(#) $Id: rename.test,v 1.9 2000/05/03 00:14:36 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -168,7 +168,7 @@ test rename-6.1 {old code invalidated (epoch incremented) when cmd with compile proc incr {} {puts "new incr called!"} catch {x} msg set msg -} {called "incr" with too many arguments} +} {wrong # args: should be "incr"} if {[info commands incr.old] != {}} { catch {rename incr {}} |