]> git.ipfire.org Git - thirdparty/git.git/blob - t/t4115-apply-symlink.sh
Merge branch 'rs/pcre2-utf'
[thirdparty/git.git] / t / t4115-apply-symlink.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
5
6 test_description='git apply symlinks and partial files
7
8 '
9
10 TEST_PASSES_SANITIZE_LEAK=true
11 . ./test-lib.sh
12
13 test_expect_success setup '
14
15 test_ln_s_add path1/path2/path3/path4/path5 link1 &&
16 git commit -m initial &&
17
18 git branch side &&
19
20 rm -f link? &&
21
22 test_ln_s_add htap6 link1 &&
23 git commit -m second &&
24
25 git diff-tree -p HEAD^ HEAD >patch &&
26 git apply --stat --summary patch
27
28 '
29
30 test_expect_success SYMLINKS 'apply symlink patch' '
31
32 git checkout side &&
33 git apply patch &&
34 git diff-files -p >patched &&
35 test_cmp patch patched
36
37 '
38
39 test_expect_success 'apply --index symlink patch' '
40
41 git checkout -f side &&
42 git apply --index patch &&
43 git diff-index --cached -p HEAD >patched &&
44 test_cmp patch patched
45
46 '
47
48 test_done