bc: fix "echo -n '#foo' | bc" not eating last 'o'
[oweals/busybox.git] / testsuite / cat.tests
1 #!/bin/sh
2
3 # Copyright 2018 by Denys Vlasenko <vda.linux@googlemail.com>
4 # Licensed under GPLv2, see file LICENSE in this source tree.
5
6 . ./testing.sh
7
8 # testing "description" "command" "result" "infile" "stdin"
9 optional FEATURE_CATV
10 testing 'cat -e' \
11         'cat -e' \
12         'foo$\n' \
13         '' \
14         'foo\n'
15 SKIP=
16
17 optional FEATURE_CATV
18 testing 'cat -v' \
19         'cat -v' \
20         'foo\n' \
21         '' \
22         'foo\n'
23 SKIP=
24
25 exit $FAILCOUNT