summaryrefslogtreecommitdiffstats
path: root/tests/stack.test
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2002-07-29 00:25:48 (GMT)
committermsofer <msofer@noemail.net>2002-07-29 00:25:48 (GMT)
commit14187be07e693f2cc2638a81adf9d0609e18e210 (patch)
tree208b34b62a4fbd5ad2e737a2db9c09e81c11e01d /tests/stack.test
parent4c6220c161613169b3aa174c3b464ce139748300 (diff)
downloadtcl-14187be07e693f2cc2638a81adf9d0609e18e210.zip
tcl-14187be07e693f2cc2638a81adf9d0609e18e210.tar.gz
tcl-14187be07e693f2cc2638a81adf9d0609e18e210.tar.bz2
Fix for [Bug 582522] - aliases now fire execution traces on the target
command. Optimisation of alias invocation. FossilOrigin-Name: 81bf54a15536a93fda01b0f68c488728bc3d0fd4
Diffstat (limited to 'tests/stack.test')
-rw-r--r--tests/stack.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/stack.test b/tests/stack.test
index 8d07bfb..828352b 100644
--- a/tests/stack.test
+++ b/tests/stack.test
@@ -9,7 +9,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: stack.test,v 1.14 2002/06/22 04:19:47 dgp Exp $
+# RCS: @(#) $Id: stack.test,v 1.15 2002/07/29 00:25:49 msofer Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -43,7 +43,7 @@ test stack-1.1 {maxNestingDepth reached on infinite recursion} {minStack2400} {
catch {recurse} rv
rename recurse {}
set rv
-} {too many nested calls to Tcl_Eval (infinite loop?)}
+} {too many nested evaluations (infinite loop?)}
test stack-2.1 {maxNestingDepth reached on infinite recursion} {minStack2400} {
# do this in a slave to not mess with parent
@@ -53,7 +53,7 @@ test stack-2.1 {maxNestingDepth reached on infinite recursion} {minStack2400} {
set msg [$slave eval { catch {foo} msg ; set msg }]
interp delete $slave
set msg
-} {too many nested calls to AliasObjCmd (infinite loop using alias?)}
+} {too many nested evaluations (infinite loop?)}
# cleanup
::tcltest::cleanupTests