git.vger.kernel.org archive mirror
 help / color / mirror / 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

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

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).