diff options
author | dgp <dgp@users.sourceforge.net> | 2009-09-11 20:13:27 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-09-11 20:13:27 (GMT) |
commit | c30ce8dcf495febef9d5111ae53ac2a614e593c1 (patch) | |
tree | 3752be5dcbdff1a044daf4602cb5e78552c4d52d /tests | |
parent | 8bfbb0cd8dbc0d85beef1db77403d7c60a39df65 (diff) | |
download | tcl-c30ce8dcf495febef9d5111ae53ac2a614e593c1.zip tcl-c30ce8dcf495febef9d5111ae53ac2a614e593c1.tar.gz tcl-c30ce8dcf495febef9d5111ae53ac2a614e593c1.tar.bz2 |
* generic/tclBasic.c: Completed the NR-enabling of [subst].
* generic/tclCmdMZ.c: [Bug 2314561].
* generic/tclCompCmds.c:
* generic/tclCompile.c:
* generic/tclInt.h:
* tests/coroutine.test:
* tests/parse.test:
Diffstat (limited to 'tests')
-rw-r--r-- | tests/coroutine.test | 4 | ||||
-rw-r--r-- | tests/parse.test | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/coroutine.test b/tests/coroutine.test index b3ae02a..776dda5 100644 --- a/tests/coroutine.test +++ b/tests/coroutine.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: coroutine.test,v 1.5 2009/09/07 14:47:16 dkf Exp $ +# RCS: @(#) $Id: coroutine.test,v 1.6 2009/09/11 20:13:27 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -280,7 +280,7 @@ test coroutine-1.12 {proc as coroutine} -setup { test coroutine-1.13 {subst as coroutine: literal} { list [coroutine foo eval {subst {>>[yield a],[yield b]<<}}] [foo x] [foo y] } {a b >>x,y<<} -test coroutine-1.14 {subst as coroutine: in variable} knownBug { +test coroutine-1.14 {subst as coroutine: in variable} { set pattern {>>[yield c],[yield d]<<} list [coroutine foo eval {subst $pattern}] [foo p] [foo q] } {c d >>p,q<<} diff --git a/tests/parse.test b/tests/parse.test index b745a97..482c3b8 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.37 2009/09/04 17:33:12 dgp Exp $ +# RCS: @(#) $Id: parse.test,v 1.38 2009/09/11 20:13:27 dgp Exp $ if {[catch {package require tcltest 2.0.2}]} { puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required." @@ -1048,7 +1048,7 @@ test parse-19.3 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { interp delete i } -test parse-19.4 {Bug 1115904: recursion limit in Tcl_EvalEx} -setup { +test parse-19.4 {Bug 1115904: recursion limit in Tcl_EvalEx} -constraints knownBug -setup { interp create i i eval {proc {} args {}} interp recursionlimit i 2 |