Windows: a test_cmp that is agnostic to random LF <> CRLF conversions
commit4d715ac05cf5b800a98ce75bbc0cb3ea2dfe70ab
authorJohannes Sixt <j6t@kdbg.org>
Sat, 26 Oct 2013 19:17:15 +0000 (26 21:17 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Oct 2013 16:00:36 +0000 (28 09:00 -0700)
tree23275296e29eb6822cf13909881c699c5449d6f7
parentce1a0473e8b5892c27526c0f340b6d440c6f0fff
Windows: a test_cmp that is agnostic to random LF <> CRLF conversions

In a number of tests, output that was produced by a shell script is
compared to expected output using test_cmp. Unfortunately, the MSYS bash--
when invoked via git, such as in hooks--converts LF to CRLF on output
(as produced by echo and printf), which leads to many false positives.

Implements a diff tool that undoes the converted CRLF. To avoid that
sub-processes are spawned (which is very slow on Windows), the tool is
implemented as a shell function. Diff is invoked as usual only when a
difference is detected by the shell code.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib-functions.sh
t/test-lib.sh