1#!/bin/sh
2
3test_description="Tests index-pack performance"
4
5. ./perf-lib.sh
6
7test_perf_large_repo
8
9test_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
16test_perf 'index-pack 0 threads' '
17 GIT_DIR=t1 git index-pack --threads=1 --stdin < $PACK
18'
19
20test_perf 'index-pack 1 thread ' '
21 GIT_DIR=t2 GIT_FORCE_THREADS=1 git index-pack --threads=1 --stdin < $PACK
22'
23
24test_perf 'index-pack 2 threads' '
25 GIT_DIR=t3 git index-pack --threads=2 --stdin < $PACK
26'
27
28test_perf 'index-pack 4 threads' '
29 GIT_DIR=t4 git index-pack --threads=4 --stdin < $PACK
30'
31
32test_perf 'index-pack 8 threads' '
33 GIT_DIR=t5 git index-pack --threads=8 --stdin < $PACK
34'
35
36test_perf 'index-pack default number of threads' '
37 GIT_DIR=t6 git index-pack --stdin < $PACK
38'
39
40test_done