Git fork
at reftables-rust 29 lines 579 B view raw
1#!/bin/sh 2 3test_description="Tests performance of writing the index" 4 5. ./perf-lib.sh 6 7test_perf_default_repo 8 9test_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 15 /* 16 !ballast/* 17 EOF 18 else 19 echo Assuming non-synthetic repo... 20 fi && 21 nr_files=$(git ls-files | wc -l) 22' 23 24count=3 25test_perf "write_locked_index $count times ($nr_files files)" " 26 test-tool write-cache $count 27" 28 29test_done