aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/bc.c8
-rwxr-xr-xtestsuite/bc.tests5
2 files changed, 12 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c
index d37417f11..e7983f38d 100644
--- a/miscutils/bc.c
+++ b/miscutils/bc.c
@@ -4205,8 +4205,14 @@ static BC_STATUS zbc_parse_for(BcParse *p)
4205 4205
4206 if (p->l.t.t != BC_LEX_SCOLON) 4206 if (p->l.t.t != BC_LEX_SCOLON)
4207 s = zbc_parse_expr(p, BC_PARSE_REL); 4207 s = zbc_parse_expr(p, BC_PARSE_REL);
4208 else 4208 else {
4209 // Set this for the next call to bc_parse_number.
4210 // This is safe to set because the current token is a semicolon,
4211 // which has no string requirement.
4212 bc_vec_string(&p->l.t.v, 1, "1");
4213 bc_parse_pushNUM(p);
4209 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition"); 4214 s = bc_POSIX_does_not_allow_empty_X_expression_in_for("condition");
4215 }
4210 4216
4211 if (s) RETURN_STATUS(s); 4217 if (s) RETURN_STATUS(s);
4212 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token()); 4218 if (p->l.t.t != BC_LEX_SCOLON) RETURN_STATUS(bc_error_bad_token());
diff --git a/testsuite/bc.tests b/testsuite/bc.tests
index d33f8c90a..edff209bb 100755
--- a/testsuite/bc.tests
+++ b/testsuite/bc.tests
@@ -51,6 +51,11 @@ testing "bc if 0 else if 1" \
51 "2\n9\n" \ 51 "2\n9\n" \
52 "" "if (0) 1 else if (1) 2; 9" 52 "" "if (0) 1 else if (1) 2; 9"
53 53
54testing "bc for(;;)" \
55 "bc" \
56 "2\n3\n2\n9\n" \
57 "" "i=2; for (;;) { 2; if(--i==0) break; 3; }; 9"
58
54testing "bc define auto" \ 59testing "bc define auto" \
55 "bc" \ 60 "bc" \
56 "8\n9\n" \ 61 "8\n9\n" \