diff options
| author | dgp@users.sourceforge.net <dgp> | 2004-10-26 21:42:33 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2004-10-26 21:42:33 (GMT) |
| commit | 28406a1c49f0334b1ca0bb9d15ea725e67551309 (patch) | |
| tree | 2d61b6619626e5c343bf53ab40ba21a8c2f15516 | |
| parent | a2c9f5627de7b64763bdba41cd1dc22facdb6b36 (diff) | |
| download | tcl-28406a1c49f0334b1ca0bb9d15ea725e67551309.zip tcl-28406a1c49f0334b1ca0bb9d15ea725e67551309.tar.gz tcl-28406a1c49f0334b1ca0bb9d15ea725e67551309.tar.bz2 | |
* tests/subst.test (subst-12.3-5): More tests for Bug 1036649.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | tests/subst.test | 10 |
2 files changed, 10 insertions, 2 deletions
@@ -1,6 +1,6 @@ 2004-10-26 Don Porter <dgp@users.sourceforge.net> - * tests/subst.test (subst-12.3,4): More tests for Bug 1036649. + * tests/subst.test (subst-12.3-5): More tests for Bug 1036649. * tests/compile.test (compile-12.4): Backport test for Bug 1001997. * tests/timer.test (timer-10.1): Backport test for Bug 1016167. diff --git a/tests/subst.test b/tests/subst.test index 30a9ad2..09e4de2 100644 --- a/tests/subst.test +++ b/tests/subst.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: subst.test,v 1.13.2.6 2004/10/26 21:03:28 dgp Exp $ +# RCS: @(#) $Id: subst.test,v 1.13.2.7 2004/10/26 21:42:53 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -250,6 +250,14 @@ test subst-12.4 {nasty case, Bug 1036649} { } list $res $x } {{1 {missing close-bracket}} 10} +test subst-12.5 {nasty case, Bug 1036649} { + set x 0 + for {set i 0} {$i < 10} {incr i} { + set res [list [catch {subst "\[incr x"} msg] $msg] + if {$msg ne "missing close-bracket"} break + } + list $res $x +} {{1 {missing close-bracket}} 0} # cleanup ::tcltest::cleanupTests |
