The third batch
[git.git] / t / t0055-beyond-symlinks.sh
blobc3eb1158ef9ae2eb10f3f7a6d5c882e41f3c576a
1 #!/bin/sh
3 test_description='update-index and add refuse to add beyond symlinks'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
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
16 test_expect_success SYMLINKS 'update-index --add beyond symlinks' '
17 test_must_fail git update-index --add c/d &&
18 cat >expect <<-\EOF &&
20 b/d
21 EOF
22 git ls-files >actual &&
23 test_cmp expect actual
26 test_expect_success SYMLINKS 'add beyond symlinks' '
27 test_must_fail git add c/d &&
28 cat >expect <<-\EOF &&
30 b/d
31 EOF
32 git ls-files >actual &&
33 test_cmp expect actual
36 test_done