diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 20:29:38 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 20:29:38 (GMT) |
| commit | 02d5c366c54486330cf623794e5c691260a0000c (patch) | |
| tree | e7f19f81beecf18df1b4ed7a51f18c483da17797 /tests/parse.test | |
| parent | c3cc6e3f2609640da214c90d0667393eb4818240 (diff) | |
| download | tcl-02d5c366c54486330cf623794e5c691260a0000c.zip tcl-02d5c366c54486330cf623794e5c691260a0000c.tar.gz tcl-02d5c366c54486330cf623794e5c691260a0000c.tar.bz2 | |
* generic/tclParse.c: reverting the "fix" for [Bug 2017583],
* tests/parse.test: numLevel management and TclInterpReady check
seems to be necessary after all.
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 e1ab8c7..2220e22 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.33 2008/07/14 00:38:02 msofer Exp $ +# RCS: @(#) $Id: parse.test,v 1.34 2008/07/14 20:29:41 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 1 + interp recursionlimit i 2 } -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 1 + interp recursionlimit i 2 } -body { i eval {subst {[[]]}} } -cleanup { |
