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>
This commit is contained in:
Pavel Roskin
2005-10-27 23:00:43 -04:00
committed by Junio C Hamano
parent a77a922212
commit f07a524195

View File

@ -49,7 +49,7 @@ test_expect_success \
git-unpack-objects <test-1-${packname_1}.pack" git-unpack-objects <test-1-${packname_1}.pack"
unset GIT_OBJECT_DIRECTORY unset GIT_OBJECT_DIRECTORY
cd $TRASH/.git2 cd "$TRASH/.git2"
test_expect_success \ test_expect_success \
'check unpack without delta' \ 'check unpack without delta' \
@ -61,7 +61,7 @@ test_expect_success \
return 1 return 1
} }
done' done'
cd $TRASH cd "$TRASH"
test_expect_success \ test_expect_success \
'pack with delta' \ 'pack with delta' \
@ -80,7 +80,7 @@ test_expect_success \
git-unpack-objects <test-2-${packname_2}.pack' git-unpack-objects <test-2-${packname_2}.pack'
unset GIT_OBJECT_DIRECTORY unset GIT_OBJECT_DIRECTORY
cd $TRASH/.git2 cd "$TRASH/.git2"
test_expect_success \ test_expect_success \
'check unpack with delta' \ 'check unpack with delta' \
'(cd ../.git && find objects -type f -print) | '(cd ../.git && find objects -type f -print) |
@ -91,7 +91,7 @@ test_expect_success \
return 1 return 1
} }
done' done'
cd $TRASH cd "$TRASH"
rm -fr .git2 rm -fr .git2
mkdir .git2 mkdir .git2