2007-06-29 08:14:13 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='ignore CR in CRLF sequence while computing similiarity'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
|
2008-08-08 11:26:28 +02:00
|
|
|
cat "$TEST_DIRECTORY"/t0022-crlf-rename.sh >sample &&
|
2007-06-29 08:14:13 +02:00
|
|
|
git add sample &&
|
|
|
|
|
|
|
|
test_tick &&
|
|
|
|
git commit -m Initial &&
|
|
|
|
|
2008-08-08 11:26:28 +02:00
|
|
|
sed -e "s/\$/
/" "$TEST_DIRECTORY"/t0022-crlf-rename.sh >elpmas &&
|
2007-06-29 08:14:13 +02:00
|
|
|
git add elpmas &&
|
|
|
|
rm -f sample &&
|
|
|
|
|
|
|
|
test_tick &&
|
|
|
|
git commit -a -m Second
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'diff -M' '
|
|
|
|
|
|
|
|
git diff-tree -M -r --name-status HEAD^ HEAD |
|
|
|
|
sed -e "s/R[0-9]*/RNUM/" >actual &&
|
|
|
|
echo "RNUM sample elpmas" >expect &&
|
2008-03-12 22:36:36 +01:00
|
|
|
test_cmp expect actual
|
2007-06-29 08:14:13 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|