summaryrefslogtreecommitdiff
path: root/t/t5500-fetch-pack.sh
diff options
context:
space:
mode:
authorMichael Heemskerk <mheemskerk@atlassian.com>2013-05-02 14:56:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-02 17:05:52 (GMT)
commit71d5f938910120275484aac0b2e1c27cdf8b5cf3 (patch)
tree350ba3f8557d963e670b4aa0b296d48df22d859b /t/t5500-fetch-pack.sh
parentaf04fa2a78af3f4dc07bdc3e3018ccf3baa88c20 (diff)
downloadgit-71d5f938910120275484aac0b2e1c27cdf8b5cf3.zip
git-71d5f938910120275484aac0b2e1c27cdf8b5cf3.tar.gz
git-71d5f938910120275484aac0b2e1c27cdf8b5cf3.tar.bz2
t5500: add test for fetching with an unknown 'shallow'
When the client sends a 'shallow' line for an object that the server does not have, the server should just ignore it and let the client keep that unknown shallow boundary. Signed-off-by: Michael Heemskerk <mheemskerk@atlassian.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5500-fetch-pack.sh')
-rwxr-xr-xt/t5500-fetch-pack.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh
index d574085..6133d9e 100755
--- a/t/t5500-fetch-pack.sh
+++ b/t/t5500-fetch-pack.sh
@@ -373,6 +373,20 @@ test_expect_success 'clone shallow with packed refs' '
test_cmp count8.expected count8.actual
'
+test_expect_success 'fetch in shallow repo unreachable shallow objects' '
+ (
+ git clone --bare --branch B --single-branch "file://$(pwd)/." no-reflog &&
+ git clone --depth 1 "file://$(pwd)/no-reflog" shallow9 &&
+ cd no-reflog &&
+ git tag -d TAGB1 TAGB2 &&
+ git update-ref refs/heads/B B~~ &&
+ git gc --prune=now &&
+ cd ../shallow9 &&
+ git fetch origin &&
+ git fsck --no-dangling
+ )
+'
+
test_expect_success 'setup tests for the --stdin parameter' '
for head in C D E F
do