3 test_description
='CRLF renormalization'
7 test_expect_success setup
'
8 git config core.autocrlf false &&
9 printf "LINEONE\nLINETWO\nLINETHREE\n" >LF.txt &&
10 printf "LINEONE\r\nLINETWO\r\nLINETHREE\r\n" >CRLF.txt &&
11 printf "LINEONE\r\nLINETWO\nLINETHREE\n" >CRLF_mix_LF.txt &&
16 test_expect_success
'renormalize CRLF in repo' '
17 echo "*.txt text=auto" >.gitattributes &&
18 git add --renormalize "*.txt" &&
19 cat >expect <<-\EOF &&
20 i/lf w/crlf attr/text=auto CRLF.txt
21 i/lf w/lf attr/text=auto LF.txt
22 i/lf w/mixed attr/text=auto CRLF_mix_LF.txt
25 sed -e "s/ / /g" -e "s/ */ /g" |
27 test_cmp expect actual
30 test_expect_success
'ignore-errors not mistaken for renormalize' '
32 echo "*.txt text=auto" >.gitattributes &&
33 git ls-files --eol >expect &&
34 git add --ignore-errors "*.txt" &&
35 git ls-files --eol >actual &&
36 test_cmp expect actual