3 test_description
='update-index and add refuse to add beyond symlinks'
5 TEST_PASSES_SANITIZE_LEAK
=true
8 test_expect_success SYMLINKS setup
'
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 ! ( git ls-files | grep c/d )
21 test_expect_success SYMLINKS
'add beyond symlinks' '
22 test_must_fail git add c/d &&
23 ! ( git ls-files | grep c/d )