3 # Copyright (c) 2005 Junio C Hamano
6 test_description
='git apply with rejects
12 test_expect_success setup
'
13 for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
17 cat file1 >saved.file1 &&
18 git update-index --add file1 &&
19 git commit -m initial &&
21 for i in 1 2 A B 4 5 6 7 8 9 10 11 12 C 13 14 15 16 17 18 19 20 D 21
28 for i in 1 E 2 3 4 5 6 7 8 9 10 11 12 C 13 14 15 16 17 18 19 20 F 21
34 git update-index --add --remove file1 file2 &&
35 git diff -M HEAD >patch.2 &&
38 mv saved.file1 file1 &&
39 git update-index --add --remove file1 file2 &&
41 for i in 1 E 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 F 21
46 cat file1 >saved.file1
49 test_expect_success
'apply without --reject should fail' '
57 git diff file1 saved.file1
60 test_expect_success
'apply without --reject should fail' '
62 if git apply --verbose patch.1
68 git diff file1 saved.file1
71 test_expect_success
'apply with --reject should fail but update the file' '
73 cat saved.file1 >file1 &&
74 rm -f file1.rej file2.rej &&
76 if git apply --reject patch.1
78 echo "succeeds with --reject?"
82 git diff file1 expected &&
88 echo "file2 should not have been touched"
93 test_expect_success
'apply with --reject should fail but update the file' '
95 cat saved.file1 >file1 &&
96 rm -f file1.rej file2.rej file2 &&
98 if git apply --reject patch.2 >rejects
100 echo "succeeds with --reject?"
105 echo "file1 still exists?"
108 git diff file2 expected &&
114 echo "file2 should not have been touched"
120 test_expect_success
'the same test with --verbose' '
122 cat saved.file1 >file1 &&
123 rm -f file1.rej file2.rej file2 &&
125 if git apply --reject --verbose patch.2 >rejects
127 echo "succeeds with --reject?"
132 echo "file1 still exists?"
135 git diff file2 expected &&
141 echo "file2 should not have been touched"
147 test_expect_success
'apply cleanly with --verbose' '
149 git cat-file -p HEAD:file1 >file1 &&
150 rm -f file?.rej file2 &&
152 git apply --verbose patch.1 &&