Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / t / perf / p5600-partial-clone.sh
bloba965f2c4d6130cf6d9d99520c4a396ce80c0dc27
1 #!/bin/sh
3 test_description='performance of partial clones'
4 . ./perf-lib.sh
6 test_perf_default_repo
8 test_expect_success 'enable server-side config' '
9 git config uploadpack.allowFilter true &&
10 git config uploadpack.allowAnySHA1InWant true
13 test_perf 'clone without blobs' '
14 rm -rf bare.git &&
15 git clone --no-local --bare --filter=blob:none . bare.git
18 test_perf 'checkout of result' '
19 rm -rf worktree &&
20 mkdir -p worktree/.git &&
21 tar -C bare.git -cf - . | tar -C worktree/.git -xf - &&
22 git -C worktree config core.bare false &&
23 git -C worktree checkout -f
26 test_perf 'fsck' '
27 git -C bare.git fsck
30 test_perf 'count commits' '
31 git -C bare.git rev-list --all --count
34 test_perf 'count non-promisor commits' '
35 git -C bare.git rev-list --all --count --exclude-promisor-objects
38 test_perf 'gc' '
39 git -C bare.git gc
42 test_done