summaryrefslogtreecommitdiffstats
path: root/tests/parse.test
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-07-14 20:29:38 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-07-14 20:29:38 (GMT)
commit8fde7ec910e486d89ba49167d1b295a34197064c (patch)
treee7f19f81beecf18df1b4ed7a51f18c483da17797 /tests/parse.test
parenta3a847f6fe873e569cc78f12befd9d14ae73d114 (diff)
downloadtcl-8fde7ec910e486d89ba49167d1b295a34197064c.zip
tcl-8fde7ec910e486d89ba49167d1b295a34197064c.tar.gz
tcl-8fde7ec910e486d89ba49167d1b295a34197064c.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.test6
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 {