summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-03-11 15:00:51 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-03-11 15:00:51 (GMT)
commit8ad967404ac779d2dff31836f295f22ed6fc130c (patch)
treec26e4cad9cc63046295c6fa6fec3e970ddd0c731
parent812f825cfcb54b05a3df59e2cb1585af3da47c67 (diff)
downloadtcl-bug_b9b2079e6d.zip
tcl-bug_b9b2079e6d.tar.gz
tcl-bug_b9b2079e6d.tar.bz2
New test compile-5.3 for the bug.bug_b9b2079e6d
-rw-r--r--tests/compile.test11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/compile.test b/tests/compile.test
index 46e678a..bb12050 100644
--- a/tests/compile.test
+++ b/tests/compile.test
@@ -224,6 +224,17 @@ test compile-5.2 {TclCompileForeachCmd: non-local variables} {
foreach-test
set ::foo
} 3
+test compile-5.3 {TclCompileForeachCmd: [Bug b9b2079e6d]} -setup {
+ proc demo {} {
+ foreach x y {
+ if 1 break else
+ }
+ }
+} -body {
+ demo
+} -cleanup {
+ rename demo {}
+} -returnCodes error -result {wrong # args: no script following "else" argument}
test compile-6.1 {TclCompileSetCmd: global scalar names with ::s} -setup {
catch {unset x}