/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
0c72d6d
)
Merge branch 'ak/t7800-wo-readlink' into maint
author
Junio C Hamano
<gitster@pobox.com>
Mon, 11 Jul 2016 17:44:15 +0000
(10:44 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 11 Jul 2016 17:44:15 +0000
(10:44 -0700)
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
t/t7800-difftool.sh
patch
|
blob
|
blame
|
history
diff --git
a/t/t7800-difftool.sh
b/t/t7800-difftool.sh
index
7ce4cd7
..
42a2929
100755
(executable)
--- a/
t/t7800-difftool.sh
+++ b/
t/t7800-difftool.sh
@@
-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