summaryrefslogtreecommitdiff
path: root/t/t9114-git-svn-dcommit-merge.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2007-11-05 11:21:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-05 20:58:39 (GMT)
commitfb159580a1628947f0a088e24cfe6fe4c81d99d0 (patch)
tree9c60175ae98b1512ffafb9b3f57a522f8aefbe92 /t/t9114-git-svn-dcommit-merge.sh
parentc74d9acf20ba0c69bbd67c5b0bb3bd3c2349cebe (diff)
downloadgit-fb159580a1628947f0a088e24cfe6fe4c81d99d0.zip
git-fb159580a1628947f0a088e24cfe6fe4c81d99d0.tar.gz
git-fb159580a1628947f0a088e24cfe6fe4c81d99d0.tar.bz2
git-svn: t9114: verify merge commit message in test
It's possible that we end up with an incorrect commit message in this test after making changes to fix the clobber bug in dcommit. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9114-git-svn-dcommit-merge.sh')
-rwxr-xr-xt/t9114-git-svn-dcommit-merge.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t9114-git-svn-dcommit-merge.sh b/t/t9114-git-svn-dcommit-merge.sh
index d6ca955..225060b 100755
--- a/t/t9114-git-svn-dcommit-merge.sh
+++ b/t/t9114-git-svn-dcommit-merge.sh
@@ -86,4 +86,9 @@ test_expect_success 'verify post-merge ancestry' "
git cat-file commit refs/heads/svn^ | grep '^friend$'
"
+test_expect_success 'verify merge commit message' "
+ git rev-list --pretty=raw -1 refs/heads/svn | \
+ grep \" Merge branch 'merge' into svn\"
+ "
+
test_done