Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2005-10-28 07:00:43 +0400
committerJunio C Hamano <junkio@cox.net>2005-10-28 13:59:01 +0400
commitf07a524195a73537d4187460ccbd072bcb1ff486 (patch)
treecf6439199f61d87dbb70fd7b43144e41462a359d /t
parenta77a9222127b6e873ffab08dd57bd5d37b069f41 (diff)
fix testsuite to tolerate spaces in path
This patch allows the testsuite to run properly when the full path to the git sources contains spaces or other symbols that need to be quoted. Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-xt/t5300-pack-object.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t5300-pack-object.sh b/t/t5300-pack-object.sh
index 96db98b65c..5b50536b54 100755
--- a/t/t5300-pack-object.sh
+++ b/t/t5300-pack-object.sh
@@ -49,7 +49,7 @@ test_expect_success \
git-unpack-objects <test-1-${packname_1}.pack"
unset GIT_OBJECT_DIRECTORY
-cd $TRASH/.git2
+cd "$TRASH/.git2"
test_expect_success \
'check unpack without delta' \
@@ -61,7 +61,7 @@ test_expect_success \
return 1
}
done'
-cd $TRASH
+cd "$TRASH"
test_expect_success \
'pack with delta' \
@@ -80,7 +80,7 @@ test_expect_success \
git-unpack-objects <test-2-${packname_2}.pack'
unset GIT_OBJECT_DIRECTORY
-cd $TRASH/.git2
+cd "$TRASH/.git2"
test_expect_success \
'check unpack with delta' \
'(cd ../.git && find objects -type f -print) |
@@ -91,7 +91,7 @@ test_expect_success \
return 1
}
done'
-cd $TRASH
+cd "$TRASH"
rm -fr .git2
mkdir .git2