summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2015-08-02 16:17:00 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2015-08-02 16:17:00 (GMT)
commite9e00655085d4adea3b0d81b30827c598cb4dcc1 (patch)
treebe086c2ef7f7e58c8c3e14705acd13ac0eaf7be7 /tests
parentbaede06dd8e3f85ac6630f1af5d84e159871ea3f (diff)
downloadtcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.zip
tcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.tar.gz
tcl-e9e00655085d4adea3b0d81b30827c598cb4dcc1.tar.bz2
And another problem with continue in for-step clauses, this time a problem in how TEBC handled an edge case in the semantics.
Diffstat (limited to 'tests')
-rw-r--r--tests/for.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/for.test b/tests/for.test
index 6c710bb..1a65274 100644
--- a/tests/for.test
+++ b/tests/for.test
@@ -1314,7 +1314,7 @@ test for-8.9 {break in for-step clause} {
list $i $j $k
}}
} {2 1 3}
-test for-8.10 {continue in for-step clause} knownBug {
+test for-8.10 {continue in for-step clause} {
apply {{} {
for {set k 0} {$k < 3} {incr k} {
set j 0