diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-02-13 17:03:24 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-02-13 17:03:55 -0800 |
| commit | c867e4fa180bec4750e9b54eb10f459030dbebfd (patch) | |
| tree | d178a68edd12cea19afafb57436e3592d6e6178f /t/t5604-clone-reference.sh | |
| parent | 23c56f7bd5f1667f8b793d796bf30e39545920f6 (diff) | |
| parent | cbf04937d5b9fcf0a76c28f69e6294e9e3ecd7e6 (diff) | |
| download | git-c867e4fa180bec4750e9b54eb10f459030dbebfd.tar.gz | |
Sync with Git 2.39.2
Diffstat (limited to 't/t5604-clone-reference.sh')
| -rwxr-xr-x | t/t5604-clone-reference.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t5604-clone-reference.sh b/t/t5604-clone-reference.sh index 2734e37e88..7ccebb40c3 100755 --- a/t/t5604-clone-reference.sh +++ b/t/t5604-clone-reference.sh @@ -344,4 +344,20 @@ test_expect_success SYMLINKS 'clone repo with symlinked or unknown files at obje test_must_be_empty T--shared.objects-symlinks.raw ' +test_expect_success SYMLINKS 'clone repo with symlinked objects directory' ' + test_when_finished "rm -fr sensitive malicious" && + + mkdir -p sensitive && + echo "secret" >sensitive/file && + + git init malicious && + rm -fr malicious/.git/objects && + ln -s "$(pwd)/sensitive" ./malicious/.git/objects && + + test_must_fail git clone --local malicious clone 2>err && + + test_path_is_missing clone && + grep "failed to start iterator over" err +' + test_done |
