aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-04-07 23:00:54 -0700
committerRob Landley <rob@landley.net>2017-04-11 14:42:41 -0500
commita9c20a4ad92199b1c67e09d6e4d5b9e1cc9609e1 (patch)
tree43548a01b7fa0cad351246082b7ec79397e4bfdb /tests
parent3354319e3d3e0b4f5f113d65fa508608f278092c (diff)
downloadtoybox-a9c20a4ad92199b1c67e09d6e4d5b9e1cc9609e1.tar.gz
Fix "make test_split".
The test shouldn't assume there's a toybox binary on the path.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/split.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/split.test b/tests/split.test
index 2a27c093..533cd4fa 100755
--- a/tests/split.test
+++ b/tests/split.test
@@ -22,7 +22,7 @@ testing "suffix exhaustion" \
rm walrus*
testing "bytes" \
- "toybox seq 1 20000 | split -b 100 -a 3 - whang && ls whang* | wc -l && wc -c whangbpw" "1089\n94 whangbpw\n" "" ""
+ "seq 1 20000 | split -b 100 -a 3 - whang && ls whang* | wc -l && wc -c whangbpw" "1089\n94 whangbpw\n" "" ""
testing "reassembly" \
'diff -u <(ls whang* | sort | xargs cat) <(seq 1 20000) && echo yes' \