aboutsummaryrefslogtreecommitdiff
path: root/scripts/test/split.test
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-09-20 13:09:14 -0500
committerRob Landley <rob@landley.net>2014-09-20 13:09:14 -0500
commit387edf547eb09b27ca6d49772eb048d729f09cf4 (patch)
tree59d482f33735690cab6d90723393afa1e2c8dce5 /scripts/test/split.test
parentd3df423a6cde0c6282658ff628574771d3824d71 (diff)
downloadtoybox-387edf547eb09b27ca6d49772eb048d729f09cf4.tar.gz
Move testsuite out of scripts/test into its own top level tests directory, and make ctrl-c kill "make test" more reliably.
Diffstat (limited to 'scripts/test/split.test')
-rwxr-xr-xscripts/test/split.test31
1 files changed, 0 insertions, 31 deletions
diff --git a/scripts/test/split.test b/scripts/test/split.test
deleted file mode 100755
index d86b0250..00000000
--- a/scripts/test/split.test
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/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*