aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-01-21 08:40:54 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2021-02-02 17:37:41 +0100
commitc849e72c0b216578f96b763529c5e58056d0662c (patch)
tree2f1cb9320218a0e471ea8924d315e981470d4cc9 /testsuite
parent27ae859c50b6eedb9f43e21cdc774a2fefd726e1 (diff)
downloadbusybox-w32-c849e72c0b216578f96b763529c5e58056d0662c.tar.gz
busybox-w32-c849e72c0b216578f96b763529c5e58056d0662c.tar.bz2
busybox-w32-c849e72c0b216578f96b763529c5e58056d0662c.zip
nl: ensure '-b n' option displays file content
The command 'nl -b n' should output no line numbers, just some spaces as a placeholder followed by the actual file content. Add tests for line numbering by cat and nl. The correct results were obtained from coreutils. function old new delta print_numbered_lines 152 157 +5 .rodata 182456 182453 -3 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 1/1 up/down: 5/-3) Total: 2 bytes Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/cat.tests24
-rwxr-xr-xtestsuite/nl.tests39
2 files changed, 63 insertions, 0 deletions
diff --git a/testsuite/cat.tests b/testsuite/cat.tests
index 10970dc90..cf924ab5b 100755
--- a/testsuite/cat.tests
+++ b/testsuite/cat.tests
@@ -22,4 +22,28 @@ testing 'cat -v' \
22 'foo\n' 22 'foo\n'
23SKIP= 23SKIP=
24 24
25optional FEATURE_CATN
26testing 'cat -n' \
27 'cat -n' \
28"\
29 1 line 1
30 2
31 3 line 3
32" \
33 '' \
34 'line 1\n\nline 3\n'
35SKIP=
36
37optional FEATURE_CATN
38testing 'cat -b' \
39 'cat -b' \
40"\
41 1 line 1
42
43 2 line 3
44" \
45 '' \
46 'line 1\n\nline 3\n'
47SKIP=
48
25exit $FAILCOUNT 49exit $FAILCOUNT
diff --git a/testsuite/nl.tests b/testsuite/nl.tests
new file mode 100755
index 000000000..95e7abb58
--- /dev/null
+++ b/testsuite/nl.tests
@@ -0,0 +1,39 @@
1#!/bin/sh
2# Copyright 2021 by Ron Yorston
3# Licensed under GPLv2, see file LICENSE in this source tree.
4
5. ./testing.sh
6
7# testing "test name" "commands" "expected result" "file input" "stdin"
8
9testing "nl numbers all lines" \
10 "nl -b a input" \
11"\
12 1 line 1
13 2
14 3 line 3
15" \
16 "line 1\n\nline 3\n" \
17 ""
18
19testing "nl numbers non-empty lines" \
20 "nl -b t input" \
21"\
22 1 line 1
23
24 2 line 3
25" \
26 "line 1\n\nline 3\n" \
27 ""
28
29testing "nl numbers no lines" \
30 "nl -b n input" \
31"\
32 line 1
33
34 line 3
35" \
36 "line 1\n\nline 3\n" \
37 ""
38
39exit $FAILCOUNT