| #!/bin/bash |
| |
| [ -f testing.sh ] && . testing.sh |
| |
| #testing "name" "command" "result" "infile" "stdin" |
| |
| testing "human_readable l 1024" "test_human_readable 123456789" "118M\n" "" "" |
| testing "human_readable l 1000" "test_human_readable -i 123456789" "123M\n" "" "" |
| testing "human_readable s 1024" "test_human_readable 5675" "5.5K\n" "" "" |
| testing "human_readable s 1000" "test_human_readable -i 5675" "5.6k\n" "" "" |
| |
| # An example input where we give a better result than coreutils. |
| # 267350/1024=261.08. We say 261K and coreutils says 262K. |
| testing "human_readable" "test_human_readable 267350" "261K\n" "" "" |
| |
| testing "human_readable -b" "test_human_readable -b 123" "123B\n" "" "" |
| testing "human_readable -b" "test_human_readable -b 123456789" "118M\n" "" "" |
| testing "human_readable -s" "test_human_readable -s 123456789" "118 M\n" "" "" |
| testing "human_readable -bs" "test_human_readable -bs 123456789" "118 M\n" "" "" |