Nguyễn Thái Ngọc Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 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 && |
Elia Pinto | 4717659 | 2014-04-23 06:44:06 -0700 | [diff] [blame] | 11 | PACK=$(ls .git/objects/pack/*.pack | head -n1) && |
Nguyễn Thái Ngọc Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 12 | test -f "$PACK" && |
| 13 | export PACK |
| 14 | ' |
| 15 | |
Nguyễn Thái Ngọc Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 16 | test_perf 'index-pack 0 threads' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 17 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 20 | ' |
| 21 | |
| 22 | test_perf 'index-pack 1 thread ' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 23 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 26 | ' |
| 27 | |
| 28 | test_perf 'index-pack 2 threads' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 29 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 32 | ' |
| 33 | |
| 34 | test_perf 'index-pack 4 threads' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 35 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 38 | ' |
| 39 | |
| 40 | test_perf 'index-pack 8 threads' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 41 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 44 | ' |
| 45 | |
| 46 | test_perf 'index-pack default number of threads' ' |
Jeff King | 775c71e | 2019-04-22 17:19:52 -0400 | [diff] [blame] | 47 | 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 Duy | b8a2486 | 2012-05-06 19:31:55 +0700 | [diff] [blame] | 50 | ' |
| 51 | |
| 52 | test_done |