sha1-name.c: move around the collect_ambiguous() function
[git.git] / t / perf / lib-pack.sh
blobd3865db286fc644e3a6dc20a2e8932695b35df2a
1 # Helpers for dealing with large numbers of packs.
3 # create $1 nonsense packs, each with a single blob
4 create_packs () {
5 perl -le '
6 my ($n) = @ARGV;
7 for (1..$n) {
8 print "blob";
9 print "data <<EOF";
10 print "$_";
11 print "EOF";
12 print "checkpoint"
14 ' "$@" |
15 git fast-import
18 # create a large number of packs, disabling any gc which might
19 # cause us to repack them
20 setup_many_packs () {
21 git config gc.auto 0 &&
22 git config gc.autopacklimit 0 &&
23 git config fastimport.unpacklimit 0 &&
24 create_packs 500