On Fri, Jan 22, 2016 at 2:50 PM, Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: > On Fri, Jan 22, 2016 at 06:01:25PM +0100, Johannes Schindelin wrote: >> +test_expect_success 'conflict markers contain CRLF when core.eol=crlf' ' >> + test_must_fail git -c core.eol=crlf merge-file -p \ >> + nolf-diff1.txt nolf-orig.txt nolf-diff2.txt >output.txt && >> + test $(sed -n "/\.txt\r$/p" output.txt | wc -l) = 3 > > The "\r" isn't recognized by 'sed' on Mac OS X or BSD. Perhaps use > instead: > > test $(cat output.txt | tr "\015" Q | sed -n "/\.txtQ$/p" | wc -l) = 3 Or the 'sed' could even become at 'grep' at this point. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html