busybox/testsuite/cat.tests
Denys Vlasenko 751005020d testsuite/cat.tests: fix false positive
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2018-06-27 09:57:30 +02:00

26 lines
401 B
Bash
Executable File

#!/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