2018-04-29 14:05:43 +02:00
|
|
|
#!/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"
|
2018-06-27 09:57:30 +02:00
|
|
|
optional FEATURE_CATV
|
2018-04-29 14:05:43 +02:00
|
|
|
testing 'cat -e' \
|
|
|
|
'cat -e' \
|
|
|
|
'foo$\n' \
|
|
|
|
'' \
|
|
|
|
'foo\n'
|
2018-06-27 09:57:30 +02:00
|
|
|
SKIP=
|
2018-04-29 14:05:43 +02:00
|
|
|
|
2018-06-27 09:57:30 +02:00
|
|
|
optional FEATURE_CATV
|
2018-04-29 14:05:43 +02:00
|
|
|
testing 'cat -v' \
|
|
|
|
'cat -v' \
|
|
|
|
'foo\n' \
|
|
|
|
'' \
|
|
|
|
'foo\n'
|
2018-06-27 09:57:30 +02:00
|
|
|
SKIP=
|
2018-04-29 14:05:43 +02:00
|
|
|
|
2021-01-21 08:40:54 +00:00
|
|
|
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=
|
|
|
|
|
2018-04-29 14:05:43 +02:00
|
|
|
exit $FAILCOUNT
|