Skip to content

Commit 1ac96cd

Browse files
peffgitster
authored andcommitted
t5310: increase the number of bitmapped commits
The bitmap index we compute in t5310 has only 20 commits in it. This gives poor coverage of bitmap_writer_select_commits(), which simply writes a bitmap for everything when there are fewer than 100 commits. Let's bump the number of commits in the test to cover the more complex code paths (this does drop coverage of the individual lines of the trivial path, but the complex path does everything it does and more). Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b1c36cb commit 1ac96cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t5310-pack-bitmaps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ has_any () {
2121
}
2222

2323
test_expect_success 'setup repo with moderate-sized history' '
24-
test_commit_bulk --id=file 10 &&
24+
test_commit_bulk --id=file 100 &&
2525
git checkout -b other HEAD~5 &&
2626
test_commit_bulk --id=side 10 &&
2727
git checkout master &&

0 commit comments

Comments
 (0)