d80eecb868
function old new delta cat_main 418 421 +3 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
22 lines
345 B
Bash
Executable File
22 lines
345 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"
|
|
testing 'cat -e' \
|
|
'cat -e' \
|
|
'foo$\n' \
|
|
'' \
|
|
'foo\n'
|
|
|
|
testing 'cat -v' \
|
|
'cat -v' \
|
|
'foo\n' \
|
|
'' \
|
|
'foo\n'
|
|
|
|
exit $FAILCOUNT
|