diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-01 12:28:04 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-09-01 12:28:04 (GMT) |
commit | ba6dbcbada614e41a404b68b0b7edcca6f149f07 (patch) | |
tree | fa1c9d1fe32b5d73c3c14dfd86969f74574830e9 /tests/nre.test | |
parent | 95660b09be94d6eb4b0482d33c78d8880e0c14cb (diff) | |
download | tcl-ba6dbcbada614e41a404b68b0b7edcca6f149f07.zip tcl-ba6dbcbada614e41a404b68b0b7edcca6f149f07.tar.gz tcl-ba6dbcbada614e41a404b68b0b7edcca6f149f07.tar.bz2 |
* generic/tclCmdAH.c: nre-enabling [eval]; eval scripts are now
* generic/tclOOBasic.c: bytecompiled. Adapted recursion limit tests
* tests/interp.test: that were relying on eval not being
* tests/nre.test: compiled. Part of the [Bug 2017632] project.
* tests/unsupported.test:
Diffstat (limited to 'tests/nre.test')
-rw-r--r-- | tests/nre.test | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/nre.test b/tests/nre.test index cc15b13..c415150 100644 --- a/tests/nre.test +++ b/tests/nre.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: nre.test,v 1.4 2008/08/22 18:27:27 dgp Exp $ +# RCS: @(#) $Id: nre.test,v 1.5 2008/09/01 12:28:10 msofer Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -236,6 +236,26 @@ test nre-7.5 {[foreach] is not recursive} -constraints {knownBug} -setup { unset abs } -result {{0 2 2 0} 0} +test nre-7.6 {[eval] is not recursive} -setup { + proc a i [makebody {eval [list a $i]}] +} -body { + setabs + a 0 +} -cleanup { + rename a {} + unset abs +} -result {{0 2 2 1} 0} + +test nre-7.7 {[eval] is not recursive} -setup { + proc a i [makebody {eval "a $i"}] +} -body { + setabs + a 0 +} -cleanup { + rename a {} + unset abs +} -result {{0 2 2 1} 0} + test nre-8.1 {nre and {*}} -body { # force an expansion that grows the evaluation stack, check that nre # adapts the bottomPtr. This crashes on failure. |