modernize t9300: mark here-doc words to ignore tab indentation
commit0ca2972345d6de3b9eb845af4b0e9b701af120bd
authorJohannes Sixt <j6t@kdbg.org>
Thu, 19 Nov 2015 19:09:48 +0000 (19 20:09 +0100)
committerJeff King <peff@peff.net>
Fri, 20 Nov 2015 13:02:06 +0000 (20 08:02 -0500)
tree7db931b7a9b2a99b4eb6ab721b5edb5d872d8802
parent93e911f5ae0b262fc63898790ab40f2306fd5395
modernize t9300: mark here-doc words to ignore tab indentation

In the next commit, we will indent test case preparations. This will
require that here-documents ignore the tab indentation. Prepare for
this change by marking the here-doc words accordingly. This does not
have an effect now, but will remove some noise from the git diff -b
output of the next commit.

The change here is entirely automated with this perl command:

  perl -i -lpe 's/(cat.*<<) *((EOF|(EXPECT|INPUT)_END).*$)/$1-$2 &&/' t/t9300-fast-import.sh

i.e., inserts a dash between << and the EOF word (and removes blanks
that our style guide abhors) and appends the && that will become
necessary.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Jeff King <peff@peff.net>
t/t9300-fast-import.sh