diff options
author | Denys Vlasenko | 2018-12-16 19:21:57 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-12-16 19:21:57 +0100 |
commit | a50576a415a9b5d384a28c9bd4b55a4df2974248 (patch) | |
tree | 12db52aea474921a6fb5bc935405309b25e73c88 /testsuite/bc.tests | |
parent | 6d29879c676a636656c7b29ab5be76518346b19c (diff) | |
download | busybox-a50576a415a9b5d384a28c9bd4b55a4df2974248.zip busybox-a50576a415a9b5d384a28c9bd4b55a4df2974248.tar.gz |
bc: fold zbc_parse_else() into its only caller
While at it, allow newline between "else" and its body
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/bc.tests')
-rwxr-xr-x | testsuite/bc.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/bc.tests b/testsuite/bc.tests index 95cc28d..36baeea 100755 --- a/testsuite/bc.tests +++ b/testsuite/bc.tests @@ -61,6 +61,11 @@ testing "bc if(cond)<NL>" \ "9\n" \ "" "if(0)\n3\n9" +testing "bc if(cond) stmt else<NL>" \ + "bc" \ + "4\n9\n" \ + "" "if(0)3 else\n4\n9" + testing "bc while(cond)<NL>" \ "bc" \ "8\n7\n6\n5\n4\n3\n2\n1\n9\n" \ |