]> granicus.if.org Git - git/commit
t5319: fix bogus cat-file argument
authorJeff King <peff@peff.net>
Fri, 5 Apr 2019 18:04:56 +0000 (14:04 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 16 Apr 2019 07:58:21 +0000 (16:58 +0900)
commitb4a14394af96b6a87a722ffb57666bb1edc001b9
treebc57743aa03a248187678c4ca3046ee7f02e9c6b
parent4828ce9871fee0ea0309220c461fdedf255df931
t5319: fix bogus cat-file argument

There's no such argument as "--unsorted"; it's spelled "--unordered".
But our test failed to notice that cat-file didn't run at all because:

  1. It lost the exit code of git on the left-hand side of a pipe.

  2. It was comparing two runs of the broken invocation with and without
     a particular config variable (and indeed, both cases produced no
     output!).

Let's fix the option, but also tweak the helper function to check the
exit code.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5319-multi-pack-index.sh