OSDN Git Service

Fix "make test_split".
authorElliott Hughes <enh@google.com>
Sat, 8 Apr 2017 06:00:54 +0000 (23:00 -0700)
committerRob Landley <rob@landley.net>
Tue, 11 Apr 2017 19:42:41 +0000 (14:42 -0500)
The test shouldn't assume there's a toybox binary on the path.

tests/split.test

index 2a27c09..533cd4f 100755 (executable)
@@ -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' \