diff options
author | Eric Wong <e@80x24.org> | 2019-05-23 17:27:23 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-05-28 11:02:52 -0700 |
commit | e941c48d49ebe24404515acf258d8003f2374627 (patch) | |
tree | a4c1552889d97511831b791517b0d9d3d56d5ddd /t | |
parent | Git 2.22-rc1 (diff) | |
download | tgif-e941c48d49ebe24404515acf258d8003f2374627.tar.xz |
server-info: do not list unlinked packs
Having non-existent packs in objects/info/packs causes
dumb HTTP clients to abort.
v2: use single loop with ALLOC_GROW as suggested by Jeff King
Signed-off-by: Eric Wong <e@80x24.org>
Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t6500-gc.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t6500-gc.sh b/t/t6500-gc.sh index 515c6735e9..c0f04dc6b0 100755 --- a/t/t6500-gc.sh +++ b/t/t6500-gc.sh @@ -71,6 +71,8 @@ test_expect_success 'gc --keep-largest-pack' ' git gc --keep-largest-pack && ( cd .git/objects/pack && ls *.pack ) >pack-list && test_line_count = 2 pack-list && + awk "/^P /{print \$2}" <.git/objects/info/packs >pack-info && + test_line_count = 2 pack-info && test_path_is_file $BASE_PACK && git fsck ) |