From: Eric Sunshine <sunshine@sunshineco.com>
To: Josef Kufner <josef@kufner.cz>
Cc: Git List <git@vger.kernel.org>
Subject: Re: [PATCH] Add tests for "Pass graph width to pretty formatting, so '%>|' can work properly"
Date: Fri, 11 Sep 2015 15:37:53 -0400 [thread overview]
Message-ID: <CAPig+cRkSRSC0eaBencw8cFrd64sUBQE44aSJ0T2WyPg2JTFCw@mail.gmail.com> (raw)
In-Reply-To: <1441993845-25778-1-git-send-email-josef@kufner.cz>
On Fri, Sep 11, 2015 at 1:50 PM, Josef Kufner <josef@kufner.cz> wrote:
> ---
Missing sign-off. Or is this intended to be concatenated with the
patch you sent earlier?
> diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh
> index 7398605..3358837 100755
> --- a/t/t4205-log-pretty-formats.sh
> +++ b/t/t4205-log-pretty-formats.sh
> @@ -319,6 +319,18 @@ EOF
> test_cmp expected actual
> '
>
> +# Note: Space between 'message' and 'two' should be in the same column as in previous test.
> +test_expect_success 'right alignment formatting at the nth column with --graph. i18n.logOutputEncoding' '
> + git -c i18n.logOutputEncoding=$test_encoding log --graph --pretty="tformat:%h %>|(40)%s" >actual &&
> + qz_to_tab_space <<EOF | iconv -f utf-8 -t $test_encoding >expected &&
You don't seem to be taking advantage of qz_to_tab_space's
transliteration of Q to tab and Z to space, so s/qz_to_tab_space/cat/
would make the code clearer.
> +* $head1 message two
> +* $head2 message one
> +* $head3 add bar
> +* $head4 $(commit_msg)
> +EOF
> + test_cmp expected actual
> +'
> +
> test_expect_success 'right alignment formatting with no padding' '
> git log --pretty="tformat:%>(1)%s" >actual &&
> cat <<EOF >expected &&
> @@ -330,6 +342,17 @@ EOF
> test_cmp expected actual
> '
>
> +test_expect_success 'right alignment formatting with no padding and with --graph' '
> + git log --graph --pretty="tformat:%>(1)%s" >actual &&
> + cat <<EOF >expected &&
> +* message two
> +* message one
> +* add bar
> +* $(commit_msg)
> +EOF
> + test_cmp expected actual
> +'
next prev parent reply other threads:[~2015-09-11 19:37 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-11 13:47 [PATCH] Pass graph width to pretty formatting, so '%>|' can work properly Josef Kufner
2015-09-11 16:54 ` Junio C Hamano
2015-09-11 17:50 ` [PATCH] Add tests for "Pass graph width to pretty formatting, so '%>|' can work properly" Josef Kufner
2015-09-11 19:37 ` Eric Sunshine [this message]
2015-09-11 20:19 ` Junio C Hamano
2015-09-11 20:22 ` Josef Kufner
2015-09-11 20:25 ` Josef Kufner
2015-09-11 17:52 ` [PATCH] Pass graph width to pretty formatting, so '%>|' can work properly Josef Kufner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAPig+cRkSRSC0eaBencw8cFrd64sUBQE44aSJ0T2WyPg2JTFCw@mail.gmail.com \
--to=sunshine@sunshineco.com \
--cc=git@vger.kernel.org \
--cc=josef@kufner.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).