Git fork

t9109: make test hash independent

Instead of stripping off the first 41 characters of git log output,
let's just strip off the first space-separated component, which will
work for any size hash.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Acked-by: Eric Wong <e@80x24.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

brian m. carlson and committed by
Junio C Hamano
62814dfd 3716d50d

+3 -3
+3 -3
t/t9109-git-svn-multi-glob.sh
··· 48 48 "tags/*/src/a:refs/remotes/tags/*" && 49 49 git svn multi-fetch && 50 50 git log --pretty=oneline refs/remotes/tags/end >actual && 51 - sed -e "s/^.\{41\}//" actual >output.end && 51 + cut -d" " -f2- actual >output.end && 52 52 test_cmp expect.end output.end && 53 53 test "$(git rev-parse refs/remotes/tags/end~1)" = \ 54 54 "$(git rev-parse refs/remotes/branches/v1/start)" && ··· 84 84 test $(git rev-parse refs/remotes/two/tags/end~3) = \ 85 85 $(git rev-parse refs/remotes/two/branches/v1/start) && 86 86 git log --pretty=oneline refs/remotes/two/tags/end >actual && 87 - sed -e "s/^.\{41\}//" actual >output.two && 87 + cut -d" " -f2- actual >output.two && 88 88 test_cmp expect.two output.two 89 89 ' 90 90 cat > expect.four <<EOF ··· 135 135 test $(git rev-parse refs/remotes/four/tags/next~2) = \ 136 136 $(git rev-parse refs/remotes/four/branches/v2/start) && 137 137 git log --pretty=oneline refs/remotes/four/tags/next >actual && 138 - sed -e "s/^.\{41\}//" actual >output.four && 138 + cut -d" " -f2- actual >output.four && 139 139 test_cmp expect.four output.four 140 140 ' 141 141