]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0055-beyond-symlinks.sh
The third batch
[thirdparty/git.git] / t / t0055-beyond-symlinks.sh
1 #!/bin/sh
2
3 test_description='update-index and add refuse to add beyond symlinks'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 test_expect_success SYMLINKS setup '
9 >a &&
10 mkdir b &&
11 ln -s b c &&
12 >c/d &&
13 git update-index --add a b/d
14 '
15
16 test_expect_success SYMLINKS 'update-index --add beyond symlinks' '
17 test_must_fail git update-index --add c/d &&
18 cat >expect <<-\EOF &&
19 a
20 b/d
21 EOF
22 git ls-files >actual &&
23 test_cmp expect actual
24 '
25
26 test_expect_success SYMLINKS 'add beyond symlinks' '
27 test_must_fail git add c/d &&
28 cat >expect <<-\EOF &&
29 a
30 b/d
31 EOF
32 git ls-files >actual &&
33 test_cmp expect actual
34 '
35
36 test_done