зеркало из https://github.com/microsoft/git.git
Merge branch 'jk/test-without-readlink-1'
Some test scripts assumed that readlink(1) was universally installed and available, which is not the case. * jk/test-without-readlink-1: t: use portable wrapper for readlink(1)
This commit is contained in:
Коммит
62473695d2
|
@ -253,7 +253,7 @@ test_expect_success SYMLINKS 'pack symlinked packed-refs' '
|
|||
git for-each-ref >all-refs-packed &&
|
||||
test_cmp all-refs-before all-refs-packed &&
|
||||
test -h .git/packed-refs &&
|
||||
test "$(readlink .git/packed-refs)" = "my-deviant-packed-refs"
|
||||
test "$(test_readlink .git/packed-refs)" = "my-deviant-packed-refs"
|
||||
'
|
||||
|
||||
test_done
|
||||
|
|
|
@ -263,7 +263,7 @@ test_expect_success SYMLINKS 'ensure p4 symlink parsed correctly' '
|
|||
(
|
||||
cd "$git" &&
|
||||
test -L symlink &&
|
||||
test $(readlink symlink) = symlink-target
|
||||
test $(test_readlink symlink) = symlink-target
|
||||
)
|
||||
'
|
||||
|
||||
|
@ -329,7 +329,7 @@ test_expect_success SYMLINKS 'empty symlink target' '
|
|||
git p4 clone --dest="$git" //depot@all &&
|
||||
(
|
||||
cd "$git" &&
|
||||
test $(readlink empty-symlink) = target2
|
||||
test $(test_readlink empty-symlink) = target2
|
||||
)
|
||||
'
|
||||
|
||||
|
|
|
@ -1708,3 +1708,9 @@ test_region () {
|
|||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Print the destination of symlink(s) provided as arguments. Basically
|
||||
# the same as the readlink command, but it's not available everywhere.
|
||||
test_readlink () {
|
||||
perl -le 'print readlink($_) for @ARGV' "$@"
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче