aboutsummaryrefslogtreecommitdiff
path: root/tests/split.test
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-03-02 15:20:04 -0600
committerRob Landley <rob@landley.net>2016-03-02 15:20:04 -0600
commit336c44adca1768ada1e1e2f4d7dbbc33e994e582 (patch)
tree9780ee9602ffbca6b04e472d3ac0d158f92ac49c /tests/split.test
parenteb830728b12152702c3852d079ad5c8a7f6e709b (diff)
downloadtoybox-336c44adca1768ada1e1e2f4d7dbbc33e994e582.tar.gz
Factor out command name at the start of test name, have runtest.sh print it.
Diffstat (limited to 'tests/split.test')
-rwxr-xr-xtests/split.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/split.test b/tests/split.test
index d86b0250..2a27c093 100755
--- a/tests/split.test
+++ b/tests/split.test
@@ -7,24 +7,24 @@
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" "" ""
+testing "-" "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" "" ""
+testing "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" "" ""
+testing "-l" "split file -l 10k && wc -l xab" "2105 xab\n" "" ""
rm xa[ab]
-testing "split suffix exhaustion" \
+testing "suffix exhaustion" \
"split file -l 10 -a 1 walrus 2>/dev/null || ls walrus* | wc -l" "26\n" "" ""
rm walrus*
-testing "split bytes" \
+testing "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" \
+testing "reassembly" \
'diff -u <(ls whang* | sort | xargs cat) <(seq 1 20000) && echo yes' \
"yes\n" "" ""