blob: a9b3e112d98223134d791727ffcde01e9123b117 [file] [log] [blame]
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +07001#!/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 &&
Elia Pinto47176592014-04-23 06:44:06 -070011 PACK=$(ls .git/objects/pack/*.pack | head -n1) &&
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070012 test -f "$PACK" &&
13 export PACK
14'
15
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070016test_perf 'index-pack 0 threads' '
Jeff King775c71e2019-04-22 17:19:52 -040017 rm -rf repo.git &&
18 git init --bare repo.git &&
19 GIT_DIR=repo.git git index-pack --threads=1 --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070020'
21
22test_perf 'index-pack 1 thread ' '
Jeff King775c71e2019-04-22 17:19:52 -040023 rm -rf repo.git &&
24 git init --bare repo.git &&
25 GIT_DIR=repo.git GIT_FORCE_THREADS=1 git index-pack --threads=1 --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070026'
27
28test_perf 'index-pack 2 threads' '
Jeff King775c71e2019-04-22 17:19:52 -040029 rm -rf repo.git &&
30 git init --bare repo.git &&
31 GIT_DIR=repo.git git index-pack --threads=2 --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070032'
33
34test_perf 'index-pack 4 threads' '
Jeff King775c71e2019-04-22 17:19:52 -040035 rm -rf repo.git &&
36 git init --bare repo.git &&
37 GIT_DIR=repo.git git index-pack --threads=4 --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070038'
39
40test_perf 'index-pack 8 threads' '
Jeff King775c71e2019-04-22 17:19:52 -040041 rm -rf repo.git &&
42 git init --bare repo.git &&
43 GIT_DIR=repo.git git index-pack --threads=8 --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070044'
45
46test_perf 'index-pack default number of threads' '
Jeff King775c71e2019-04-22 17:19:52 -040047 rm -rf repo.git &&
48 git init --bare repo.git &&
49 GIT_DIR=repo.git git index-pack --stdin < $PACK
Nguyễn Thái Ngọc Duyb8a24862012-05-06 19:31:55 +070050'
51
52test_done