t1006: prefer shell loop to awk for packed object sizes
commit54d8a2531b839bb9c4e2f5aa26aae029415211f9
authorRené Scharfe <l.s.r@web.de>
Wed, 3 Jan 2024 09:01:52 +0000 (3 04:01 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 3 Jan 2024 17:26:53 +0000 (3 09:26 -0800)
tree35973b3006662184f0acc907812e83c4679ecc02
parentf546151228ea99cb9e68ec321ace7d2ee7c20af5
t1006: prefer shell loop to awk for packed object sizes

To compute the expected on-disk size of packed objects, we sort the
output of show-index by pack offset and then compute the difference
between adjacent entries using awk. This works but has a few readability
problems:

  1. Reading the index in pack order means don't find out the size of an
     oid's entry until we see the _next_ entry. So we have to save it to
     print later.

     We can instead iterate in reverse order, so we compute each oid's
     size as we see it.

  2. Since the awk invocation is inside a text_expect block, we can't
     easily use single-quotes to hold the script. So we use
     double-quotes, but then have to escape the dollar signs in the awk
     script.

     We can swap this out for a shell loop instead (which is made much
     easier by the first change).

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1006-cat-file.sh