Junio C Hamano | b9905fe | 2007-06-28 23:14:13 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='ignore CR in CRLF sequence while computing similiarity' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
| 7 | test_expect_success setup ' |
| 8 | |
Junio C Hamano | bfdbee9 | 2008-08-08 02:26:28 -0700 | [diff] [blame] | 9 | cat "$TEST_DIRECTORY"/t0022-crlf-rename.sh >sample && |
Junio C Hamano | b9905fe | 2007-06-28 23:14:13 -0700 | [diff] [blame] | 10 | git add sample && |
| 11 | |
| 12 | test_tick && |
| 13 | git commit -m Initial && |
| 14 | |
Stephen Boyd | f4e6dcc | 2010-01-25 16:33:58 -0800 | [diff] [blame] | 15 | append_cr <"$TEST_DIRECTORY"/t0022-crlf-rename.sh >elpmas && |
Junio C Hamano | b9905fe | 2007-06-28 23:14:13 -0700 | [diff] [blame] | 16 | git add elpmas && |
| 17 | rm -f sample && |
| 18 | |
| 19 | test_tick && |
| 20 | git commit -a -m Second |
| 21 | |
| 22 | ' |
| 23 | |
| 24 | test_expect_success 'diff -M' ' |
| 25 | |
| 26 | git diff-tree -M -r --name-status HEAD^ HEAD | |
| 27 | sed -e "s/R[0-9]*/RNUM/" >actual && |
| 28 | echo "RNUM sample elpmas" >expect && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 29 | test_cmp expect actual |
Junio C Hamano | b9905fe | 2007-06-28 23:14:13 -0700 | [diff] [blame] | 30 | |
| 31 | ' |
| 32 | |
| 33 | test_done |