1#!/bin/sh
2
3test_description='ignore CR in CRLF sequence while computing similiarity'
4
5TEST_PASSES_SANITIZE_LEAK=true
6. ./test-lib.sh
7
8test_expect_success setup '
9
10	cat "$TEST_DIRECTORY"/t0022-crlf-rename.sh >sample &&
11	git add sample &&
12
13	test_tick &&
14	git commit -m Initial &&
15
16	append_cr <"$TEST_DIRECTORY"/t0022-crlf-rename.sh >elpmas &&
17	git add elpmas &&
18	rm -f sample &&
19
20	test_tick &&
21	git commit -a -m Second
22
23'
24
25test_expect_success 'diff -M' '
26
27	git diff-tree -M -r --name-status HEAD^ HEAD |
28	sed -e "s/R[0-9]*/RNUM/" >actual &&
29	echo "RNUM	sample	elpmas" >expect &&
30	test_cmp expect actual
31
32'
33
34test_done
35