aboutsummaryrefslogtreecommitdiff
path: root/testsuite/bc.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-02-26 14:05:28 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2021-02-26 14:23:13 +0100
commitace81cd46ce53e60fe702cc1ac857989207e7ac4 (patch)
treef9d8bd67c672ad9c586dd85e03f976bd2206fe71 /testsuite/bc.tests
parent3d88cc1d371a4a5ae8e1521a1e915479bca52959 (diff)
downloadbusybox-ace81cd46ce53e60fe702cc1ac857989207e7ac4.tar.gz
bc/dc: fix length(0) and length(0.000nnn) result
function old new delta zxc_vm_process 6464 6498 +34 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/bc.tests')
-rwxr-xr-xtestsuite/bc.tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/bc.tests b/testsuite/bc.tests
index 179d5d2a2..1c748727a 100755
--- a/testsuite/bc.tests
+++ b/testsuite/bc.tests
@@ -182,6 +182,11 @@ testing "bc print 1,2,3" \
"123" \
"" "print 1,2,3"
+testing "bc length" \
+ "bc" \
+ "1\n3\n1\n3\n3\n" \
+ "" "length(0); length(100); length(0.01); length(0.00120); length(0.012-0.012);"
+
testing "bc { print 1 }" \
"bc" \
"1" \