mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
9b6d1fc48a
Pipes ignore error codes of LHS command and thus we should not use them with Git in tests. As an alternative, use a 'tmp' file to write the Git output so we can test the exit code. Signed-off-by: Shubham Mishra <shivam828787@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
34 lines
625 B
Bash
Executable file
34 lines
625 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='ignore CR in CRLF sequence while computing similiarity'
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success setup '
|
|
|
|
cat "$TEST_DIRECTORY"/t0022-crlf-rename.sh >sample &&
|
|
git add sample &&
|
|
|
|
test_tick &&
|
|
git commit -m Initial &&
|
|
|
|
append_cr <"$TEST_DIRECTORY"/t0022-crlf-rename.sh >elpmas &&
|
|
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 >tmp &&
|
|
sed -e "s/R[0-9]*/RNUM/" tmp >actual &&
|
|
echo "RNUM sample elpmas" >expect &&
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
test_done
|