]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4105-apply-fuzz.sh
The third batch
[thirdparty/git.git] / t / t4105-apply-fuzz.sh
CommitLineData
52f3c81a
JH
1#!/bin/sh
2
3test_description='apply with fuzz and offset'
4
f54f48fc
ÆAB
5
6TEST_PASSES_SANITIZE_LEAK=true
52f3c81a
JH
7. ./test-lib.sh
8
9dotest () {
10 name="$1" && shift &&
11 test_expect_success "$name" "
12 git checkout-index -f -q -u file &&
13 git apply $* &&
82ebb0b6 14 test_cmp expect file
52f3c81a
JH
15 "
16}
17
18test_expect_success setup '
19
08495412 20 test_write_lines 1 2 3 4 5 6 7 8 9 10 11 12 >file &&
52f3c81a 21 git update-index --add file &&
08495412 22 test_write_lines 1 2 3 4 5 6 7 a b c d e 8 9 10 11 12 >file &&
52f3c81a
JH
23 cat file >expect &&
24 git diff >O0.diff &&
25
26 sed -e "s/@@ -5,6 +5,11 @@/@@ -2,6 +2,11 @@/" >O1.diff O0.diff &&
27 sed -e "s/@@ -5,6 +5,11 @@/@@ -7,6 +7,11 @@/" >O2.diff O0.diff &&
28 sed -e "s/@@ -5,6 +5,11 @@/@@ -19,6 +19,11 @@/" >O3.diff O0.diff &&
29
30 sed -e "s/^ 5/ S/" >F0.diff O0.diff &&
31 sed -e "s/^ 5/ S/" >F1.diff O1.diff &&
32 sed -e "s/^ 5/ S/" >F2.diff O2.diff &&
33 sed -e "s/^ 5/ S/" >F3.diff O3.diff
34
35'
36
37dotest 'unmodified patch' O0.diff
38
39dotest 'minus offset' O1.diff
40
41dotest 'plus offset' O2.diff
42
43dotest 'big offset' O3.diff
44
45dotest 'fuzz with no offset' -C2 F0.diff
46
47dotest 'fuzz with minus offset' -C2 F1.diff
48
49dotest 'fuzz with plus offset' -C2 F2.diff
50
51dotest 'fuzz with big offset' -C2 F3.diff
52
53test_done