t4051: mark supporting files as requiring LF-only line endings

The test t4051-diff-function-context.sh passes on Linux when core.autocrlf=true even without marking its support files as LF-only, but they fail when core.autocrlf=true in Git for Windows' SDK. The reason is that `grep ... >file.c.new` will keep CR/LF line endings on Linux (obviously treating CRs as if they were regular characters), but will be converted to LF-only line endings with MSYS2's grep that is used in Git for Windows. As we do not want to validate the way the available `grep` works, let's just mark the input as LF-only and move on. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed May 9, 2017 at 14:54 UTC 2779f665054c3ba85c1ee298929e640149d84b1e
1 file changed +1
t/.gitattributes
+1
@@ -6,6 +6,7 @@ t[0-9][0-9][0-9][0-9]/* -whitespace
6 /t4034/*/* eol=lf
7 /t4013/* eol=lf
8 /t4018/* eol=lf
9 +/t4051/* eol=lf
10 /t4100/* eol=lf
11 /t4101/* eol=lf
12 /t4109/* eol=lf