Git fork

t9108: 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
606b9749 5aa68775

+2 -2
+2 -2
t/t9108-git-svn-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/start)" && ··· 84 84 test $(git rev-parse refs/remotes/two/tags/end~3) = \ 85 85 $(git rev-parse refs/remotes/two/branches/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