Merge branch 'ak/t7800-wo-readlink' into maint

One among four invocations of readlink(1) in our test suite has
been rewritten so that the test can run on systems without the
command (others are in valgrind test framework and t9802).

* ak/t7800-wo-readlink:
  t7800: readlink may not be available
This commit is contained in:
Junio C Hamano 2016-07-11 10:44:15 -07:00
Родитель 0c72d6da31 d2addc3b96
Коммит c4cdde45f0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -446,7 +446,7 @@ write_script .git/CHECK_SYMLINKS <<\EOF
for f in file file2 sub/sub
do
echo "$f"
readlink "$2/$f"
ls -ld "$2/$f" | sed -e 's/.* -> //'
done >actual
EOF