aboutsummaryrefslogtreecommitdiff
path: root/testsuite/head.tests
diff options
context:
space:
mode:
authorThomas De Schampheleire <thomas.de_schampheleire@nokia.com>2018-09-13 15:01:46 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-09-22 19:40:35 +0200
commit6608879d34f9635572415e864b4fcbc497c74bcf (patch)
treefeb2a5a8fc86f5b024d41c9d69de994affc1b8dd /testsuite/head.tests
parente0f617699f7f1dfa1e56ded54bb1d70fd91c225e (diff)
downloadbusybox-6608879d34f9635572415e864b4fcbc497c74bcf.tar.gz
head: convert existing tests to new-style
Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/head.tests')
-rwxr-xr-xtestsuite/head.tests10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/head.tests b/testsuite/head.tests
index 1feecf990..50660d267 100755
--- a/testsuite/head.tests
+++ b/testsuite/head.tests
@@ -21,6 +21,16 @@ line 11
line 12
EOF
+testing "head (without args)" \
+ "head head.input" \
+ "line 1\nline 2\nline 3\nline 4\nline 5\nline 6\nline 7\nline 8\nline 9\nline 10\n" \
+ "" ""
+
+testing "head -n <positive number>" \
+ "head -n 2 head.input" \
+ "line 1\nline 2\n" \
+ "" ""
+
testing "head -n <negative number>" \
"head -n -9 head.input" \
"line 1\nline 2\nline 3\n" \