From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Hansen Subject: Re: [PATCH 6/7] test-hg.sh: help user correlate verbose output with email test Date: Mon, 11 Nov 2013 14:19:46 -0500 Message-ID: <52812DD2.9030506@bbn.com> References: <1384142712-2936-1-git-send-email-rhansen@bbn.com> <1384142712-2936-7-git-send-email-rhansen@bbn.com> <5280c2c3e066c_6841541e7824@nysa.notmuch> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit To: Felipe Contreras , git@vger.kernel.org X-From: git-owner@vger.kernel.org Mon Nov 11 20:19:56 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Vfx1e-0005aK-NT for gcvg-git-2@plane.gmane.org; Mon, 11 Nov 2013 20:19:55 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754294Ab3KKTTv (ORCPT ); Mon, 11 Nov 2013 14:19:51 -0500 Received: from smtp.bbn.com ([128.33.1.81]:20927 "EHLO smtp.bbn.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753520Ab3KKTTu (ORCPT ); Mon, 11 Nov 2013 14:19:50 -0500 Received: from socket.bbn.com ([192.1.120.102]:44796) by smtp.bbn.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1Vfx1X-000OqM-GS; Mon, 11 Nov 2013 14:19:47 -0500 X-Submitted: to socket.bbn.com (Postfix) with ESMTPSA id 35B373FF72 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 In-Reply-To: <5280c2c3e066c_6841541e7824@nysa.notmuch> X-Enigmail-Version: 1.6 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On 2013-11-11 06:42, Felipe Contreras wrote: > Richard Hansen wrote: >> It's hard to tell which author conversion test failed when the email >> addresses look similar. >> >> Signed-off-by: Richard Hansen >> --- >> contrib/remote-helpers/test-hg.sh | 20 ++++++++++---------- >> 1 file changed, 10 insertions(+), 10 deletions(-) >> >> diff --git a/contrib/remote-helpers/test-hg.sh b/contrib/remote-helpers/test-hg.sh >> index 84c67ff..5eda265 100755 >> --- a/contrib/remote-helpers/test-hg.sh >> +++ b/contrib/remote-helpers/test-hg.sh >> @@ -209,16 +209,16 @@ test_expect_success 'authors' ' >> >> >../expected && >> author_test alpha "" "H G Wells " && >> - author_test beta "test" "test " && >> - author_test beta "test (comment)" "test " && Notice the two betas here in the original code. >> - author_test gamma "" "Unknown " && >> - author_test delta "name" "name " && >> - author_test epsilon "name " && >> - author_test zeta " test " "test " && >> - author_test eta "test < test@example.com >" "test " && >> - author_test theta "test >test@example.com>" "test " && >> - author_test iota "test < test example com>" "test " && >> - author_test kappa "test@example.com" "Unknown " >> + author_test beta "beta" "beta " && >> + author_test beta "beta (comment)" "beta " && > > Two betas? See above. I can change them to beta1 and beta2, or if you'd prefer I can change them to beta and gamma and increment the subsequent entries. Thanks, Richard > >> + author_test gamma "" "Unknown " && >> + author_test delta "delta" "delta " && >> + author_test epsilon "epsilon " && >> + author_test zeta " zeta " "zeta " && >> + author_test eta "eta < test@example.com >" "eta " && >> + author_test theta "theta >test@example.com>" "theta " && >> + author_test iota "iota < test example com>" "iota " && >> + author_test kappa "kappa@example.com" "Unknown " >> ) && >> >> git clone "hg::hgrepo" gitrepo && >