t/t5500-fetch-pack.sh: use the $( ... ) construct for command substitution
The Git CodingGuidelines prefer the $(...) construct for command substitution instead of using the backquotes `...`. The backquoted form is the traditional method for command substitution, and is supported by POSIX. However, all but the simplest uses become complicated quickly. In particular, embedded command substitutions and/or the use of double quotes require careful escaping with the backslash character. The patch was generated by: for _f in $(find . -name "*.sh") do perl -i -pe 'BEGIN{undef $/;} s/`(.+?)`/\$(\1)/smg' "${_f}" done and then carefully proof-read. Signed-off-by: Elia Pinto <gitter.spiros@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
0469cb96e3
commit
2feed90768
|
@ -14,7 +14,7 @@ test_description='Testing multi_ack pack fetching'
|
||||||
add () {
|
add () {
|
||||||
name=$1 &&
|
name=$1 &&
|
||||||
text="$@" &&
|
text="$@" &&
|
||||||
branch=`echo $name | sed -e 's/^\(.\).*$/\1/'` &&
|
branch=$(echo $name | sed -e 's/^\(.\).*$/\1/') &&
|
||||||
parents="" &&
|
parents="" &&
|
||||||
|
|
||||||
shift &&
|
shift &&
|
||||||
|
@ -50,18 +50,18 @@ pull_to_client () {
|
||||||
case "$heads" in *B*)
|
case "$heads" in *B*)
|
||||||
echo $BTIP > .git/refs/heads/B;;
|
echo $BTIP > .git/refs/heads/B;;
|
||||||
esac &&
|
esac &&
|
||||||
git symbolic-ref HEAD refs/heads/`echo $heads \
|
git symbolic-ref HEAD refs/heads/$(echo $heads \
|
||||||
| sed -e "s/^\(.\).*$/\1/"` &&
|
| sed -e "s/^\(.\).*$/\1/") &&
|
||||||
|
|
||||||
git fsck --full &&
|
git fsck --full &&
|
||||||
|
|
||||||
mv .git/objects/pack/pack-* . &&
|
mv .git/objects/pack/pack-* . &&
|
||||||
p=`ls -1 pack-*.pack` &&
|
p=$(ls -1 pack-*.pack) &&
|
||||||
git unpack-objects <$p &&
|
git unpack-objects <$p &&
|
||||||
git fsck --full &&
|
git fsck --full &&
|
||||||
|
|
||||||
idx=`echo pack-*.idx` &&
|
idx=$(echo pack-*.idx) &&
|
||||||
pack_count=`git show-index <$idx | wc -l` &&
|
pack_count=$(git show-index <$idx | wc -l) &&
|
||||||
test $pack_count = $count &&
|
test $pack_count = $count &&
|
||||||
rm -f pack-*
|
rm -f pack-*
|
||||||
)
|
)
|
||||||
|
@ -132,13 +132,13 @@ test_expect_success 'single given branch clone' '
|
||||||
|
|
||||||
test_expect_success 'clone shallow depth 1' '
|
test_expect_success 'clone shallow depth 1' '
|
||||||
git clone --no-single-branch --depth 1 "file://$(pwd)/." shallow0 &&
|
git clone --no-single-branch --depth 1 "file://$(pwd)/." shallow0 &&
|
||||||
test "`git --git-dir=shallow0/.git rev-list --count HEAD`" = 1
|
test "$(git --git-dir=shallow0/.git rev-list --count HEAD)" = 1
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'clone shallow depth 1 with fsck' '
|
test_expect_success 'clone shallow depth 1 with fsck' '
|
||||||
git config --global fetch.fsckobjects true &&
|
git config --global fetch.fsckobjects true &&
|
||||||
git clone --no-single-branch --depth 1 "file://$(pwd)/." shallow0fsck &&
|
git clone --no-single-branch --depth 1 "file://$(pwd)/." shallow0fsck &&
|
||||||
test "`git --git-dir=shallow0fsck/.git rev-list --count HEAD`" = 1 &&
|
test "$(git --git-dir=shallow0fsck/.git rev-list --count HEAD)" = 1 &&
|
||||||
git config --global --unset fetch.fsckobjects
|
git config --global --unset fetch.fsckobjects
|
||||||
'
|
'
|
||||||
|
|
||||||
|
@ -147,7 +147,7 @@ test_expect_success 'clone shallow' '
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'clone shallow depth count' '
|
test_expect_success 'clone shallow depth count' '
|
||||||
test "`git --git-dir=shallow/.git rev-list --count HEAD`" = 2
|
test "$(git --git-dir=shallow/.git rev-list --count HEAD)" = 2
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'clone shallow object count' '
|
test_expect_success 'clone shallow object count' '
|
||||||
|
@ -273,7 +273,7 @@ test_expect_success 'additional simple shallow deepenings' '
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'clone shallow depth count' '
|
test_expect_success 'clone shallow depth count' '
|
||||||
test "`git --git-dir=shallow/.git rev-list --count HEAD`" = 11
|
test "$(git --git-dir=shallow/.git rev-list --count HEAD)" = 11
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success 'clone shallow object count' '
|
test_expect_success 'clone shallow object count' '
|
||||||
|
|
Loading…
Reference in New Issue