diff options
author | Rob Landley <rob@landley.net> | 2013-06-16 23:08:09 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-06-16 23:08:09 -0500 |
commit | 55ec010efa77fe10cf4b7eaa480bc52008ef7a54 (patch) | |
tree | 5d929965d58269a6edbca95f194bfc10c8b227eb /scripts/test/split.test | |
parent | e566f3a4a560b530cb9e451f7912f8578489d9d3 (diff) | |
download | toybox-55ec010efa77fe10cf4b7eaa480bc52008ef7a54.tar.gz |
Test cases for split.
Diffstat (limited to 'scripts/test/split.test')
-rwxr-xr-x | scripts/test/split.test | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/test/split.test b/scripts/test/split.test new file mode 100755 index 00000000..d86b0250 --- /dev/null +++ b/scripts/test/split.test @@ -0,0 +1,31 @@ +#!/bin/bash + +[ -f testing.sh ] && . testing.sh + +#testing "name" "command" "result" "infile" "stdin" + +testing "split" "seq 1 12345 | split && ls xa[a-z] | wc -l" "13\n" "" "" +rm xa[a-z] + +testing "split -" "seq 1 12345 | split - && ls xa[a-z] | wc -l" "13\n" "" "" +rm xa[a-z] + +seq 1 12345 > file +testing "split file" "split file && ls xa[a-z] | wc -l" "13\n" "" "" +rm xa[a-z] + +testing "split -l" "split file -l 10k && wc -l xab" "2105 xab\n" "" "" +rm xa[ab] + +testing "split suffix exhaustion" \ + "split file -l 10 -a 1 walrus 2>/dev/null || ls walrus* | wc -l" "26\n" "" "" +rm walrus* + +testing "split bytes" \ + "toybox seq 1 20000 | split -b 100 -a 3 - whang && ls whang* | wc -l && wc -c whangbpw" "1089\n94 whangbpw\n" "" "" + +testing "split reassembly" \ + 'diff -u <(ls whang* | sort | xargs cat) <(seq 1 20000) && echo yes' \ + "yes\n" "" "" + +rm file whang* |