]> git.ipfire.org Git - thirdparty/git.git/blob - t/perf/p5302-pack-index.sh
index-pack: support multithreaded delta resolving
[thirdparty/git.git] / t / perf / p5302-pack-index.sh
1 #!/bin/sh
2
3 test_description="Tests index-pack performance"
4
5 . ./perf-lib.sh
6
7 test_perf_large_repo
8
9 test_expect_success 'repack' '
10 git repack -ad &&
11 PACK=`ls .git/objects/pack/*.pack | head -n1` &&
12 test -f "$PACK" &&
13 export PACK
14 '
15
16 test_perf 'index-pack 0 threads' '
17 GIT_DIR=t1 git index-pack --threads=1 --stdin < $PACK
18 '
19
20 test_perf 'index-pack 1 thread ' '
21 GIT_DIR=t2 GIT_FORCE_THREADS=1 git index-pack --threads=1 --stdin < $PACK
22 '
23
24 test_perf 'index-pack 2 threads' '
25 GIT_DIR=t3 git index-pack --threads=2 --stdin < $PACK
26 '
27
28 test_perf 'index-pack 4 threads' '
29 GIT_DIR=t4 git index-pack --threads=4 --stdin < $PACK
30 '
31
32 test_perf 'index-pack 8 threads' '
33 GIT_DIR=t5 git index-pack --threads=8 --stdin < $PACK
34 '
35
36 test_perf 'index-pack default number of threads' '
37 GIT_DIR=t6 git index-pack --stdin < $PACK
38 '
39
40 test_done