/
niceSOFT
/
diffutils
Обзор
Документация
Войти
/
niceSOFT
/
diffutils
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.0
tests/stdin
25 строк
379 B
Jim Meyering
tests: use path_prepend_ consistently; remove unnecessary VERBOSE check
07 апр 2010, 13:01
07 апр 2010, 13:01
55cf264
Код
Авторство
О чём код?
#!/bin/sh # Ensure that "-" means "standard input". : ${srcdir=.} . "$srcdir/init.sh"; path_prepend_ ../src fail=0 cat <<EOF > exp || fail=1 --- - +++ b @@ -1 +1 @@ -a +b EOF echo a > a echo b > b diff -u - b < a > out 2> err; test $? = 1 || fail=1 # Remove date and time. sed -e 's/^\([-+*][-+*][-+*] [^ ]*\) .*/\1/' out > k; mv k out compare out exp || fail=1 Exit $fail