Squashed 'third_party/git/' content from commit cb71568594
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
This commit is contained in:
commit
1b593e1ea4
3629 changed files with 1139935 additions and 0 deletions
25
t/perf/lib-pack.sh
Normal file
25
t/perf/lib-pack.sh
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Helpers for dealing with large numbers of packs.
|
||||
|
||||
# create $1 nonsense packs, each with a single blob
|
||||
create_packs () {
|
||||
perl -le '
|
||||
my ($n) = @ARGV;
|
||||
for (1..$n) {
|
||||
print "blob";
|
||||
print "data <<EOF";
|
||||
print "$_";
|
||||
print "EOF";
|
||||
print "checkpoint"
|
||||
}
|
||||
' "$@" |
|
||||
git fast-import
|
||||
}
|
||||
|
||||
# create a large number of packs, disabling any gc which might
|
||||
# cause us to repack them
|
||||
setup_many_packs () {
|
||||
git config gc.auto 0 &&
|
||||
git config gc.autopacklimit 0 &&
|
||||
git config fastimport.unpacklimit 0 &&
|
||||
create_packs 500
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue