This is a regression test for a66e77eab70a08938fdc2227b7ada0f0465c6991 Signed-off-by: Stefan Beller <stefanbeller@xxxxxxxxxxxxxx> --- t/t4203-mailmap.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/t/t4203-mailmap.sh b/t/t4203-mailmap.sh index 842b754..9ec87a2 100755 --- a/t/t4203-mailmap.sh +++ b/t/t4203-mailmap.sh @@ -409,4 +409,45 @@ test_expect_success 'Blame output (complex mapping)' ' test_cmp expect actual.fuzz ' +cat >expect <<\EOF +A <ShortName@xxxxxxxxxx> (2): + eighth + nineth + +A U Thor <author@xxxxxxxxxxx> (1): + initial + +CTO <cto@xxxxxxxxxx> (1): + seventh + +Other Author <other@xxxxxxxxx> (2): + third + fourth + +Santa Claus <santa.claus@xxxxxxxxxxxx> (2): + fifth + sixth + +Some Dude <some@xxxxxxx> (1): + second + +EOF + +# Regression test +# Using a single letter name to check for off-by-one errors in parse_name_and_email +test_expect_success 'check mapping for short names' ' + echo one >two && + git add two && + git commit --author "A <shortname@xxxxxxxxxx>" -m "eighth" && + + echo two >> two && + git add two && + git commit --author "A <ShortName@xxxxxxxxxx>" -m "nineth" && + + echo "A <ShortName@xxxxxxxxxx> <shortname@xxxxxxxxxx>" >> .mailmap && + git shortlog HEAD -e >actual + + test_cmp expect actual +' + test_done -- 1.8.3.2.776.gfcf213d -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html