t5318: avoid unnecessary command substitutions
[git.git] / t / perf / p0007-write-cache.sh
blob09595264f09fa4b1dc28b3e5d2a3d6482d998bcc
1 #!/bin/sh
3 test_description="Tests performance of writing the index"
5 . ./perf-lib.sh
7 test_perf_default_repo
9 test_expect_success "setup repo" '
10 if git rev-parse --verify refs/heads/p0006-ballast^{commit}
11 then
12 echo Assuming synthetic repo from many-files.sh
13 git config --local core.sparsecheckout 1
14 cat >.git/info/sparse-checkout <<-EOF
16 !ballast/*
17 EOF
18 else
19 echo Assuming non-synthetic repo...
20 fi &&
21 nr_files=$(git ls-files | wc -l)
24 count=3
25 test_perf "write_locked_index $count times ($nr_files files)" "
26 test-tool write-cache $count
29 test_done