Junio C Hamano <gitster@xxxxxxxxx> writes: > Junio C Hamano <gitster@xxxxxxxxx> writes: > >> Jonathan Nieder <jrnieder@xxxxxxxxx> writes: >> >>> Here's a better fix. Still no idea about the other failures Ãvar >>> and Thomas were seeing. >> >> I saw intermittent failures too. Thanks for the objid fix. > > I found a way to reliably make this fail at test #7. > > $ sh t4203-mailmap.sh </dev/null > > Without the input redirection, things seem to work Ok. > > Still puzzled... Ah, of course. t/t4203-mailmap.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t4203-mailmap.sh b/t/t4203-mailmap.sh index a267d07..e818de6 100755 --- a/t/t4203-mailmap.sh +++ b/t/t4203-mailmap.sh @@ -114,7 +114,7 @@ test_expect_success 'name entry after email entry' ' mkdir -p internal_mailmap && echo "<bugs@xxxxxxxxxx> <bugs@xxxxxxxxxx>" >internal_mailmap/.mailmap && echo "Internal Guy <bugs@xxxxxxxxxx>" >>internal_mailmap/.mailmap && - git shortlog >actual && + git shortlog HEAD >actual && test_cmp expect actual ' @@ -131,7 +131,7 @@ test_expect_success 'name entry after email entry, case-insensitive' ' mkdir -p internal_mailmap && echo "<bugs@xxxxxxxxxx> <bugs@xxxxxxxxxx>" >internal_mailmap/.mailmap && echo "Internal Guy <BUGS@xxxxxxxxxx>" >>internal_mailmap/.mailmap && - git shortlog >actual && + git shortlog HEAD >actual && test_cmp expect actual ' -- 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