aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-09-13 12:21:07 -0700
committerJunio C Hamano <gitster@pobox.com>2022-09-13 12:21:07 -0700
commit72869e750bf62fa313e7854d18e48c083f4720cc (patch)
tree3b92e3660e7714d3b603bd01b617c712ecb93e15 /t
parentac8035a2affdf30f2c691ad760826d955bba0507 (diff)
parent1490d7d82d5bd504b095c4db030a98b8080c596a (diff)
downloadgit-72869e750bf62fa313e7854d18e48c083f4720cc.tar.gz
Merge branch 'jk/is-promisor-object-keep-tree-in-use' into maint
An earlier optimization discarded a tree-object buffer that is still in use, which has been corrected. * jk/is-promisor-object-keep-tree-in-use: is_promisor_object(): fix use-after-free of tree buffer
Diffstat (limited to 't')
-rwxr-xr-xt/t5616-partial-clone.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t5616-partial-clone.sh b/t/t5616-partial-clone.sh
index 4a3778d04a..9aeacc2f6a 100755
--- a/t/t5616-partial-clone.sh
+++ b/t/t5616-partial-clone.sh
@@ -49,6 +49,13 @@ test_expect_success 'do partial clone 1' '
test "$(git -C pc1 config --local remote.origin.partialclonefilter)" = "blob:none"
'
+test_expect_success 'rev-list --missing=allow-promisor on partial clone' '
+ git -C pc1 rev-list --objects --missing=allow-promisor HEAD >actual &&
+ git -C pc1 rev-list --objects --missing=print HEAD >expect.raw &&
+ grep -v "^?" expect.raw >expect &&
+ test_cmp expect actual
+'
+
test_expect_success 'verify that .promisor file contains refs fetched' '
ls pc1/.git/objects/pack/pack-*.promisor >promisorlist &&
test_line_count = 1 promisorlist &&