diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 00:38:00 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 00:38:00 (GMT) |
commit | 329d552a8ac8142022bae7a52391a5b4c7da811b (patch) | |
tree | 7a11610ad81ab6b8f9aad319983d997dd81b2a1a /tests/parse.test | |
parent | 4e378306f429f7d5e125b91cecf54ef4fcf6b31b (diff) | |
download | tcl-329d552a8ac8142022bae7a52391a5b4c7da811b.zip tcl-329d552a8ac8142022bae7a52391a5b4c7da811b.tar.gz tcl-329d552a8ac8142022bae7a52391a5b4c7da811b.tar.bz2 |
* generic/tclParse.c: remove unnecessary numLevel management
[Bug 2017583]
Diffstat (limited to 'tests/parse.test')
-rw-r--r-- | tests/parse.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/parse.test b/tests/parse.test index edf37d6..e1ab8c7 100644 --- a/tests/parse.test +++ b/tests/parse.test @@ -8,7 +8,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: parse.test,v 1.32 2008/07/13 09:03:35 msofer Exp $ +# RCS: @(#) $Id: parse.test,v 1.33 2008/07/14 00:38:02 msofer Exp $ if {[catch {package require tcltest 2.0.2}]} { puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required." @@ -1025,7 +1025,7 @@ test parse-19.2 {Bug 1115904: recursion limit in Tcl_EvalEx} -constraints { interp create i load {} Tcltest i i eval {proc {} args {}} - interp recursionlimit i 2 + interp recursionlimit i 1 } -body { i eval {testevalex {[[]]}} } -cleanup { @@ -1045,7 +1045,7 @@ test parse-19.3 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { test parse-19.4 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { interp create i i eval {proc {} args {}} - interp recursionlimit i 2 + interp recursionlimit i 1 } -body { i eval {subst {[[]]}} } -cleanup { |