blob: 10970dc9006f7b6cb48fd1f2e66d072fc1f9c23f (
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
|
#!/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=
exit $FAILCOUNT
|