diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-20 16:02:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-20 16:02:30 -0700 |
commit | 08bcd774f497af594f16e545a04e2ad767cc850d (patch) | |
tree | d7556b22e88d4b72666bb594a1e979fd4f162036 /t/perf | |
parent | Merge branch 'nd/traces' (diff) | |
parent | read-cache: free cache in discard_index (diff) | |
download | tgif-08bcd774f497af594f16e545a04e2ad767cc850d.tar.xz |
Merge branch 'rs/discard-index-discard-array'
* rs/discard-index-discard-array:
read-cache: free cache in discard_index
read-cache: add simple performance test
Diffstat (limited to 't/perf')
-rwxr-xr-x | t/perf/p0002-read-cache.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/perf/p0002-read-cache.sh b/t/perf/p0002-read-cache.sh new file mode 100755 index 0000000000..9180ae9343 --- /dev/null +++ b/t/perf/p0002-read-cache.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +test_description="Tests performance of reading the index" + +. ./perf-lib.sh + +test_perf_default_repo + +count=1000 +test_perf "read_cache/discard_cache $count times" " + test-read-cache $count +" + +test_done |