Denys Vlasenko | d80eecb | 2018-04-29 14:05:43 +0200 | [diff] [blame^] | 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 | testing 'cat -e' \ | ||||
10 | 'cat -e' \ | ||||
11 | 'foo$\n' \ | ||||
12 | '' \ | ||||
13 | 'foo\n' | ||||
14 | |||||
15 | testing 'cat -v' \ | ||||
16 | 'cat -v' \ | ||||
17 | 'foo\n' \ | ||||
18 | '' \ | ||||
19 | 'foo\n' | ||||
20 | |||||
21 | exit $FAILCOUNT |