Skip to content

Commit

Permalink
fix testsuite to tolerate spaces in path
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Pavel Roskin authored and Junio C Hamano committed Oct 28, 2005
1 parent a77a922 commit f07a524
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/t5300-pack-object.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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' \
Expand All @@ -61,7 +61,7 @@ test_expect_success \
return 1
}
done'
cd $TRASH
cd "$TRASH"

test_expect_success \
'pack with delta' \
Expand All @@ -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) |
Expand All @@ -91,7 +91,7 @@ test_expect_success \
return 1
}
done'
cd $TRASH
cd "$TRASH"

rm -fr .git2
mkdir .git2
Expand Down

0 comments on commit f07a524

Please sign in to comment.