aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-03-01 11:48:04 +0000
committerRon Yorston <rmy@pobox.com>2021-03-01 11:48:04 +0000
commite2e8e16b465d34759678b8170c44ce62c5b74eb0 (patch)
treeabc31e3e2c1d0de089ae5e1e6d37672394757af9 /testsuite
parentb5cd41cdf4e6afd475fe34b755f99578e20b08ca (diff)
parent9b6bcfda0e11c0e73a966a77110f6c68425cff34 (diff)
downloadbusybox-w32-e2e8e16b465d34759678b8170c44ce62c5b74eb0.tar.gz
busybox-w32-e2e8e16b465d34759678b8170c44ce62c5b74eb0.tar.bz2
busybox-w32-e2e8e16b465d34759678b8170c44ce62c5b74eb0.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/bc.tests5
-rwxr-xr-xtestsuite/dc.tests5
2 files changed, 10 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" \
182 "123" \ 182 "123" \
183 "" "print 1,2,3" 183 "" "print 1,2,3"
184 184
185testing "bc length" \
186 "bc" \
187 "1\n3\n1\n3\n3\n" \
188 "" "length(0); length(100); length(0.01); length(0.00120); length(0.012-0.012);"
189
185testing "bc { print 1 }" \ 190testing "bc { print 1 }" \
186 "bc" \ 191 "bc" \
187 "1" \ 192 "1" \
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