diff options
author | Gavin Howard <yzena.tech@gmail.com> | 2018-08-08 00:15:50 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-08-08 19:56:35 -0500 |
commit | 151e3f782333acbe349fdaac3ec843e42e95be3f (patch) | |
tree | 25e49c3292fafde0613fbcf601f8ab03da082e62 /tests/files/bc/parse.bc | |
parent | 49d02c41fe60684e1f43cab38e4c1d80a607a921 (diff) | |
download | toybox-151e3f782333acbe349fdaac3ec843e42e95be3f.tar.gz |
Add bc (and its tests) to pending
Diffstat (limited to 'tests/files/bc/parse.bc')
-rwxr-xr-x | tests/files/bc/parse.bc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/files/bc/parse.bc b/tests/files/bc/parse.bc new file mode 100755 index 00000000..8cc7472f --- /dev/null +++ b/tests/files/bc/parse.bc @@ -0,0 +1,16 @@ +#! /usr/bin/bc -q + +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" + } +} + +halt |