aboutsummaryrefslogtreecommitdiff
path: root/t/t4013-diff-various.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-08-12 18:04:07 -0700
committerJunio C Hamano <junkio@cox.net>2006-08-12 18:11:10 -0700
commit6c7f4cebdb40c0d95c63d59538fd235dcf978029 (patch)
treed5524c1cd96c0f4cb1da080e4827cf0dbccb46f7 /t/t4013-diff-various.sh
parent40aaae88adfe05be435b7bd17093d49869f3276f (diff)
downloadgit-6c7f4cebdb40c0d95c63d59538fd235dcf978029.tar.gz
git-6c7f4cebdb40c0d95c63d59538fd235dcf978029.tar.xz
t/t4013: fix futzing with the version string.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t4013-diff-various.sh')
-rwxr-xr-xt/t4013-diff-various.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/t4013-diff-various.sh b/t/t4013-diff-various.sh
index b24c829f0..71c454356 100755
--- a/t/t4013-diff-various.sh
+++ b/t/t4013-diff-various.sh
@@ -88,7 +88,7 @@ test_expect_success setup '
+*+ [initial] Initial
EOF
-V=`git version | sed -e 's/^git version //'`
+V=`git version | sed -e 's/^git version //' -e 's/\./\\./g'`
while read cmd
do
case "$cmd" in
@@ -103,7 +103,9 @@ do
test_expect_success "git $cmd" '
{
echo "\$ git $cmd"
- git $cmd | sed -e "s/$V/g-i-t--v-e-r-s-i-o-n/"
+ git $cmd |
+ sed -e "s/^\\(-*\\)$V\\(-*\\)\$/\\1g-i-t--v-e-r-s-i-o-n\2/" \
+ -e "s/^\\( *boundary=\"-*\\)$V\\(-*\\)\"\$/\\1g-i-t--v-e-r-s-i-o-n\2\"/"
echo "\$"
} >"$actual" &&
if test -f "$expect"