summaryrefslogtreecommitdiffstats
path: root/t/t6006-rev-list-format.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-05-25 21:05:26 +0200
committerJunio C Hamano <gitster@pobox.com>2012-05-25 21:05:26 +0200
commit500cf7cbb49f9917194ccab4563376eeb025c152 (patch)
treeca8568672b0c541163d8702e7c60eaa9a81d7471 /t/t6006-rev-list-format.sh
parentMerge branch 'rs/xdiff-fast-hash-fix' (diff)
parentfix off-by-one error in split_ident_line (diff)
downloadgit-500cf7cbb49f9917194ccab4563376eeb025c152.tar.xz
git-500cf7cbb49f9917194ccab4563376eeb025c152.zip
Merge branch 'jk/ident-split-fix'
An author/committer name that is a single character was mishandled as an invalid name by mistake.
Diffstat (limited to 't/t6006-rev-list-format.sh')
-rwxr-xr-xt/t6006-rev-list-format.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh
index a01d244502..f94f0c48e6 100755
--- a/t/t6006-rev-list-format.sh
+++ b/t/t6006-rev-list-format.sh
@@ -283,4 +283,11 @@ test_expect_success 'oneline with empty message' '
test_line_count = 5 testg.txt
'
+test_expect_success 'single-character name is parsed correctly' '
+ git commit --author="a <a@example.com>" --allow-empty -m foo &&
+ echo "a <a@example.com>" >expect &&
+ git log -1 --format="%an <%ae>" >actual &&
+ test_cmp expect actual
+'
+
test_done