2018-04-29 17:35:43 +05:30
|
|
|
#!/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 13:27:30 +05:30
|
|
|
optional FEATURE_CATV
|
2018-04-29 17:35:43 +05:30
|
|
|
testing 'cat -e' \
|
|
|
|
'cat -e' \
|
|
|
|
'foo$\n' \
|
|
|
|
'' \
|
|
|
|
'foo\n'
|
2018-06-27 13:27:30 +05:30
|
|
|
SKIP=
|
2018-04-29 17:35:43 +05:30
|
|
|
|
2018-06-27 13:27:30 +05:30
|
|
|
optional FEATURE_CATV
|
2018-04-29 17:35:43 +05:30
|
|
|
testing 'cat -v' \
|
|
|
|
'cat -v' \
|
|
|
|
'foo\n' \
|
|
|
|
'' \
|
|
|
|
'foo\n'
|
2018-06-27 13:27:30 +05:30
|
|
|
SKIP=
|
2018-04-29 17:35:43 +05:30
|
|
|
|
|
|
|
exit $FAILCOUNT
|