From: Jonathan Nieder Date: Tue, 4 May 2010 02:58:04 +0000 (-0500) Subject: t4201 (shortlog): Test output format with multiple authors X-Git-Tag: v1.7.2-rc0~28^2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ed715b5e393f922b7726460c348c8cb7eb7de49b;p=git.git t4201 (shortlog): Test output format with multiple authors Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/t/t4201-shortlog.sh b/t/t4201-shortlog.sh index 438a82647..6bfd0c058 100755 --- a/t/t4201-shortlog.sh +++ b/t/t4201-shortlog.sh @@ -36,6 +36,10 @@ test_expect_success 'setup' ' echo 5 >a1 && git commit --quiet -m "a 12 34 56 78" a1 + + echo 6 >a1 && + git commit --quiet -m "Commit by someone else" \ + --author="Someone else " a1 ' test_expect_success 'shortlog wrapping' ' @@ -51,6 +55,9 @@ A U Thor (5): a 12 34 56 78 +Someone else (1): + Commit by someone else + EOF git shortlog -w HEAD >out && test_cmp expect out