blob: cf924ab5b7ac0546568474aa82dda037e4dfb4e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/sh
# Copyright 2018 by Denys Vlasenko <vda.linux@googlemail.com>
# Licensed under GPLv2, see file LICENSE in this source tree.
. ./testing.sh
# testing "description" "command" "result" "infile" "stdin"
optional FEATURE_CATV
testing 'cat -e' \
'cat -e' \
'foo$\n' \
'' \
'foo\n'
SKIP=
optional FEATURE_CATV
testing 'cat -v' \
'cat -v' \
'foo\n' \
'' \
'foo\n'
SKIP=
optional FEATURE_CATN
testing 'cat -n' \
'cat -n' \
"\
1 line 1
2
3 line 3
" \
'' \
'line 1\n\nline 3\n'
SKIP=
optional FEATURE_CATN
testing 'cat -b' \
'cat -b' \
"\
1 line 1
2 line 3
" \
'' \
'line 1\n\nline 3\n'
SKIP=
exit $FAILCOUNT
|