git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* not ok 47 - log.decorate configuration
@ 2021-03-25  7:57 Jeffrey Walton
  2021-03-25  7:59 ` Jeffrey Walton
  2021-03-25 23:09 ` Jeffrey Walton
  0 siblings, 2 replies; 5+ messages in thread
From: Jeffrey Walton @ 2021-03-25  7:57 UTC (permalink / raw)
  To: Git List

Hi Everyone,

I'm testing 2.31.0 tarball on an Apple M1:

not ok 47 - log.decorate configuration
#
#               git log --oneline --no-decorate >expect.none &&
#               git log --oneline --decorate >expect.short &&
#               git log --oneline --decorate=full >expect.full &&
#
#               echo "[log] decorate" >>.git/config &&
#               git log --oneline >actual &&
#               test_cmp expect.short actual &&
#
#               test_config log.decorate true &&
#               git log --oneline >actual &&
#               test_cmp expect.short actual &&
#               git log --oneline --decorate=full >actual &&
#               test_cmp expect.full actual &&
#               git log --oneline --decorate=no >actual &&
#               test_cmp expect.none actual &&
#
#               test_config log.decorate no &&
#               git log --oneline >actual &&
#               test_cmp expect.none actual &&
#               git log --oneline --decorate >actual &&
#               test_cmp expect.short actual &&
#               git log --oneline --decorate=full >actual &&
#               test_cmp expect.full actual &&
#
#               test_config log.decorate 1 &&
#               git log --oneline >actual &&
#               test_cmp expect.short actual &&
#               git log --oneline --decorate=full >actual &&
#               test_cmp expect.full actual &&
#               git log --oneline --decorate=no >actual &&
#               test_cmp expect.none actual &&
#
#               test_config log.decorate short &&
#               git log --oneline >actual &&
#               test_cmp expect.short actual &&
#               git log --oneline --no-decorate >actual &&
#               test_cmp expect.none actual &&
#               git log --oneline --decorate=full >actual &&
#               test_cmp expect.full actual &&
#
#               test_config log.decorate full &&
#               git log --oneline >actual &&
#               test_cmp expect.full actual &&
#               git log --oneline --no-decorate >actual &&
#               test_cmp expect.none actual &&
#               git log --oneline --decorate >actual &&
#               test_cmp expect.short actual &&
#
#               test_unconfig log.decorate &&
#               git log --pretty=raw >expect.raw &&
#               test_config log.decorate full &&
#               git log --pretty=raw >actual &&
#               test_cmp expect.raw actual

Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: not ok 47 - log.decorate configuration
  2021-03-25  7:57 not ok 47 - log.decorate configuration Jeffrey Walton
@ 2021-03-25  7:59 ` Jeffrey Walton
  2021-03-25 23:09 ` Jeffrey Walton
  1 sibling, 0 replies; 5+ messages in thread
From: Jeffrey Walton @ 2021-03-25  7:59 UTC (permalink / raw)
  To: Git List

[-- Attachment #1: Type: text/plain, Size: 2703 bytes --]

On Thu, Mar 25, 2021 at 3:57 AM Jeffrey Walton <noloader@gmail.com> wrote:
>
> Hi Everyone,
>
> I'm testing 2.31.0 tarball on an Apple M1:
>
> not ok 47 - log.decorate configuration
> #
> #               git log --oneline --no-decorate >expect.none &&
> #               git log --oneline --decorate >expect.short &&
> #               git log --oneline --decorate=full >expect.full &&
> #
> #               echo "[log] decorate" >>.git/config &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #
> #               test_config log.decorate true &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --decorate=no >actual &&
> #               test_cmp expect.none actual &&
> #
> #               test_config log.decorate no &&
> #               git log --oneline >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #
> #               test_config log.decorate 1 &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --decorate=no >actual &&
> #               test_cmp expect.none actual &&
> #
> #               test_config log.decorate short &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --no-decorate >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #
> #               test_config log.decorate full &&
> #               git log --oneline >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --no-decorate >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate >actual &&
> #               test_cmp expect.short actual &&
> #
> #               test_unconfig log.decorate &&
> #               git log --pretty=raw >expect.raw &&
> #               test_config log.decorate full &&
> #               git log --pretty=raw >actual &&
> #               test_cmp expect.raw actual

And here is config.log. Sorry about that...

Jeff

[-- Attachment #2: git-config.log.zip --]
[-- Type: application/zip, Size: 7526 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: not ok 47 - log.decorate configuration
  2021-03-25  7:57 not ok 47 - log.decorate configuration Jeffrey Walton
  2021-03-25  7:59 ` Jeffrey Walton
@ 2021-03-25 23:09 ` Jeffrey Walton
  2021-03-26  0:45   ` Junio C Hamano
  1 sibling, 1 reply; 5+ messages in thread
From: Jeffrey Walton @ 2021-03-25 23:09 UTC (permalink / raw)
  To: Git List

On Thu, Mar 25, 2021 at 3:57 AM Jeffrey Walton <noloader@gmail.com> wrote:
>
> Hi Everyone,
>
> I'm testing 2.31.0 tarball on an Apple M1:
>
> not ok 47 - log.decorate configuration
> #
> #               git log --oneline --no-decorate >expect.none &&
> #               git log --oneline --decorate >expect.short &&
> #               git log --oneline --decorate=full >expect.full &&
> #
> #               echo "[log] decorate" >>.git/config &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #
> #               test_config log.decorate true &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --decorate=no >actual &&
> #               test_cmp expect.none actual &&
> #
> #               test_config log.decorate no &&
> #               git log --oneline >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #
> #               test_config log.decorate 1 &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --decorate=no >actual &&
> #               test_cmp expect.none actual &&
> #
> #               test_config log.decorate short &&
> #               git log --oneline >actual &&
> #               test_cmp expect.short actual &&
> #               git log --oneline --no-decorate >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate=full >actual &&
> #               test_cmp expect.full actual &&
> #
> #               test_config log.decorate full &&
> #               git log --oneline >actual &&
> #               test_cmp expect.full actual &&
> #               git log --oneline --no-decorate >actual &&
> #               test_cmp expect.none actual &&
> #               git log --oneline --decorate >actual &&
> #               test_cmp expect.short actual &&
> #
> #               test_unconfig log.decorate &&
> #               git log --pretty=raw >expect.raw &&
> #               test_config log.decorate full &&
> #               git log --pretty=raw >actual &&
> #               test_cmp expect.raw actual

Cancel this. It just tested OK a second time around.

Jeff

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: not ok 47 - log.decorate configuration
  2021-03-25 23:09 ` Jeffrey Walton
@ 2021-03-26  0:45   ` Junio C Hamano
  2021-03-26  4:19     ` Jeff King
  0 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2021-03-26  0:45 UTC (permalink / raw)
  To: Jeffrey Walton; +Cc: Git List

Jeffrey Walton <noloader@gmail.com> writes:

> On Thu, Mar 25, 2021 at 3:57 AM Jeffrey Walton <noloader@gmail.com> wrote:
>> ...
>
> Cancel this. It just tested OK a second time around.

Which may indicate that the test is flakey (e.g. timing dependent,
only reproducing when two commands in the test sequence are executed
across a second boundary, or something like that), which may be
worth fixing.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: not ok 47 - log.decorate configuration
  2021-03-26  0:45   ` Junio C Hamano
@ 2021-03-26  4:19     ` Jeff King
  0 siblings, 0 replies; 5+ messages in thread
From: Jeff King @ 2021-03-26  4:19 UTC (permalink / raw)
  To: Jeffrey Walton; +Cc: Junio C Hamano, Git List

On Thu, Mar 25, 2021 at 05:45:52PM -0700, Junio C Hamano wrote:

> Jeffrey Walton <noloader@gmail.com> writes:
> 
> > On Thu, Mar 25, 2021 at 3:57 AM Jeffrey Walton <noloader@gmail.com> wrote:
> >> ...
> >
> > Cancel this. It just tested OK a second time around.
> 
> Which may indicate that the test is flakey (e.g. timing dependent,
> only reproducing when two commands in the test sequence are executed
> across a second boundary, or something like that), which may be
> worth fixing.

I can't get it to fail with "./t4202-log.sh --stress", which usually
turns up races or other flakes. But perhaps there is something unique
about your (Jeff) system that triggers it.

It's hard to tell more without any verbose output from the failing test.
In general, failure reports accompanied by the output (or at least the
end of the output) of "./t4202-log.sh -v -i -x" will be a lot more
useful.

If you're seeing intermittent failures from a larger "make test",
consider putting "--verbose-log -x" into GIT_TEST_OPTS (either on the
make command-line, or in config.mak). The logs will be in
t/test-results/t4202-log.out, etc.

-Peff

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-03-26  4:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-25  7:57 not ok 47 - log.decorate configuration Jeffrey Walton
2021-03-25  7:59 ` Jeffrey Walton
2021-03-25 23:09 ` Jeffrey Walton
2021-03-26  0:45   ` Junio C Hamano
2021-03-26  4:19     ` Jeff King

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).