diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-16 20:01:04 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2001-11-16 20:01:04 (GMT) |
commit | 39fcfea4a14df2f64af2f0b186157d5ec9c91030 (patch) | |
tree | 580baa5a7e9751093a2c83da278179e0781a1aa1 /tests | |
parent | 92abf41d3582dceca104a6177d650952a41bdd87 (diff) | |
download | tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.zip tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.gz tcl-39fcfea4a14df2f64af2f0b186157d5ec9c91030.tar.bz2 |
Code reordering; execution levels made consistent [Bug 480896].
Diffstat (limited to 'tests')
-rw-r--r-- | tests/stack.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stack.test b/tests/stack.test index fef667e..46bd420 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.11 2001/09/11 18:26:27 hobbs Exp $ +# RCS: @(#) $Id: stack.test,v 1.12 2001/11/16 20:01:04 msofer Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -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_EvalObj (infinite loop?)} +} {too many nested calls to Tcl_Eval (infinite loop?)} test stack-2.1 {maxNestingDepth reached on infinite recursion} {minStack2400} { # do this in a slave to not mess with parent |