]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4115-apply-symlink.sh
t/README: Add a note about the dangers of coverage chasing
[thirdparty/git.git] / t / t4115-apply-symlink.sh
CommitLineData
2c71810b
JH
1#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
5be60078 6test_description='git apply symlinks and partial files
2c71810b
JH
7
8'
9
10. ./test-lib.sh
11
704a3143
JS
12if ! test_have_prereq SYMLINKS
13then
fadb5156 14 skip_all='Symbolic links not supported, skipping tests.'
704a3143 15 test_done
704a3143
JS
16fi
17
2c71810b
JH
18test_expect_success setup '
19
20 ln -s path1/path2/path3/path4/path5 link1 &&
21 git add link? &&
22 git commit -m initial &&
23
24 git branch side &&
25
26 rm -f link? &&
27
28 ln -s htap6 link1 &&
29 git update-index link? &&
30 git commit -m second &&
31
32 git diff-tree -p HEAD^ HEAD >patch &&
33 git apply --stat --summary patch
34
35'
36
37test_expect_success 'apply symlink patch' '
38
39 git checkout side &&
40 git apply patch &&
41 git diff-files -p >patched &&
3af82863 42 test_cmp patch patched
2c71810b
JH
43
44'
45
46test_expect_success 'apply --index symlink patch' '
47
48 git checkout -f side &&
49 git apply --index patch &&
50 git diff-index --cached -p HEAD >patched &&
3af82863 51 test_cmp patch patched
2c71810b
JH
52
53'
54
55test_done