diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2003-03-19 22:52:48 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2003-03-19 22:52:48 (GMT) |
commit | dc50ee15ae46a3ae3eda860803ae394bc8ddc86b (patch) | |
tree | 5c9d0de7b80f32567b198a8628a7cf5f16dbb901 /tests | |
parent | 16a00586d956341e0f805b7fe688c5362bccd40f (diff) | |
download | tcl-dc50ee15ae46a3ae3eda860803ae394bc8ddc86b.zip tcl-dc50ee15ae46a3ae3eda860803ae394bc8ddc86b.tar.gz tcl-dc50ee15ae46a3ae3eda860803ae394bc8ddc86b.tar.bz2 |
* generic/tclCompile.c:
* tests/compile.test: bad command count on TCL_OUT_LINE_COMPILE
[Bug 705406] (Don Porter). Backport from 8.5a0
Diffstat (limited to 'tests')
-rw-r--r-- | tests/compile.test | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/compile.test b/tests/compile.test index e31da81..1d2ae72 100644 --- a/tests/compile.test +++ b/tests/compile.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: compile.test,v 1.24 2003/01/08 00:34:59 dgp Exp $ +# RCS: @(#) $Id: compile.test,v 1.24.2.1 2003/03/19 22:53:16 msofer Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -115,6 +115,17 @@ test compile-3.4 {TclCompileCatchCmd: bcc'ed [return] is caught} { foo } {2} +test compile-3.5 {TclCompileCatchCmd: recover from error, [Bug 705406]} { + proc foo {} { + catch { + if {[a]} { + if b {} + } + } + } + list [catch foo msg] $msg +} {1 {invalid command name "a"}} + test compile-4.1 {TclCompileForCmd: command substituted test expression} { set i 0 set j 0 |