diff options
author | Pavel Roskin <proski@gnu.org> | 2005-10-27 23:00:43 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-28 02:59:01 -0700 |
commit | f07a524195a73537d4187460ccbd072bcb1ff486 (patch) | |
tree | cf6439199f61d87dbb70fd7b43144e41462a359d | |
parent | a77a9222127b6e873ffab08dd57bd5d37b069f41 (diff) | |
download | git-f07a524195a73537d4187460ccbd072bcb1ff486.tar.gz git-f07a524195a73537d4187460ccbd072bcb1ff486.tar.xz |
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>
-rwxr-xr-x | t/t5300-pack-object.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t5300-pack-object.sh b/t/t5300-pack-object.sh index 96db98b65..5b50536b5 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 |