aboutsummaryrefslogtreecommitdiff
path: root/testsuite/dc.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/dc.tests
parent3d88cc1d371a4a5ae8e1521a1e915479bca52959 (diff)
downloadbusybox-w32-ace81cd46ce53e60fe702cc1ac857989207e7ac4.tar.gz
busybox-w32-ace81cd46ce53e60fe702cc1ac857989207e7ac4.tar.bz2
busybox-w32-ace81cd46ce53e60fe702cc1ac857989207e7ac4.zip
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/dc.tests')
-rwxr-xr-xtestsuite/dc.tests5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/dc.tests b/testsuite/dc.tests
index 361bc8459..ad0099354 100755
--- a/testsuite/dc.tests
+++ b/testsuite/dc.tests
@@ -114,6 +114,11 @@ testing "dc newline can be a register" \
114 "2\n9\n" \ 114 "2\n9\n" \
115 "" "[2p]s\n[3p]l\nx\n9p" 115 "" "[2p]s\n[3p]l\nx\n9p"
116 116
117testing "dc Z (length) for numbers" \
118 "dc" \
119 "1\n1\n3\n1\n3\n1\n" \
120 "" "0Zp\n0.000Zp\n100Zp\n0.01Zp\n0.00120Zp\n0.0012 0.0012 - Zp\n"
121
117for f in dc_*.dc; do 122for f in dc_*.dc; do
118 r="`basename "$f" .dc`_results.txt" 123 r="`basename "$f" .dc`_results.txt"
119 test -f "$r" || continue 124 test -f "$r" || continue