aboutsummaryrefslogtreecommitdiff
path: root/testsuite/bc.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-01-02 14:00:20 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2019-01-02 14:00:20 +0100
commitcb7c955aeb593abdde67fd919864185be2eb335d (patch)
tree9e685ab32935d3217347200efe0a2a26ddb71fb9 /testsuite/bc.tests
parent266bec8ba76898c5602e54fb3460c4af42f38af0 (diff)
downloadbusybox-cb7c955aeb593abdde67fd919864185be2eb335d.tar.gz
bc: generate large bc tests on the fly, -5 mbytes in the git tree
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/bc.tests')
-rwxr-xr-xtestsuite/bc.tests54
1 files changed, 43 insertions, 11 deletions
diff --git a/testsuite/bc.tests b/testsuite/bc.tests
index fbcfff2e4..7795183a7 100755
--- a/testsuite/bc.tests
+++ b/testsuite/bc.tests
@@ -208,17 +208,17 @@ testing "bc continue in if" \
"" "\
i=2
while(i--) {
- 11
- if(i) {
- 21
- continue
- 22
- } else {
- 31
- continue
- 32
+ 11
+ if(i) {
+ 21
+ continue
+ 22
+ } else {
+ 31
+ continue
+ 32
}
- 12
+ 12
}
99
"
@@ -245,7 +245,39 @@ testing "bc ibase" \
"99\n1295\n1224\n" \
"" "a=ZZ;a;ibase=36;a=ZZ;a;ibase=Z;a=ZZ;a"
-tar xJf bc_large.tar.xz
+testing "bc parsing of numbers" \
+ "bc 2>&1 | bc 2>&1 | md5sum 2>&1" \
+ "465d8c01308d0863b6f5669e8a1c69fb -\n" \
+ "" '
+for (b = 2; b <= 16; ++b) {
+ if (b == 10) continue
+ obase = 10
+ print "ibase = A; ibase = ", b, "\n"
+ obase = b
+ for (i = 0; i <= 65536; ++i) {
+ i
+ print "0.", i, "\n"
+ print "1.", i, "\n"
+ print i, ".", i, "\n"
+ }
+}'
+
+testing "bc printing of numbers" \
+ "bc 2>&1 | bc 2>&1 | md5sum 2>&1" \
+ "d884b35d251ca096410712743aeafb9e -\n" \
+ "" '
+for (b = 2; b <= 101; ++b) {
+ if (b == 10) continue
+ s = b * b
+ print "obase = ", b, "\n"
+ for (i = 0; i <= s; ++i) {
+ i
+ print "0.", i, "\n"
+ print "1.", i, "\n"
+ print i, ".", i, "\n"
+ }
+ 2189432174861923048671023498128347619023487610234689172304.192748960128745108927461089237469018723460
+}'
for f in bc*.bc; do
r="`basename "$f" .bc`_results.txt"