summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-07-19 17:39:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-07-19 17:39:01 (GMT)
commit65ed8684c4ef5a36f2d172f1cb8b88d993c0e4ec (patch)
treecbf7776dfc7532568d0eba3fea3ff662c31b3d8c /t
parent7f05e4a6173e65220c11ed2ff42fa3d64ccd98a4 (diff)
parenta0fc4db01dfa69d836dc6f24218974a674ec29ac (diff)
downloadgit-65ed8684c4ef5a36f2d172f1cb8b88d993c0e4ec.zip
git-65ed8684c4ef5a36f2d172f1cb8b88d993c0e4ec.tar.gz
git-65ed8684c4ef5a36f2d172f1cb8b88d993c0e4ec.tar.bz2
Merge branch 'rs/discard-index-discard-array' into maint
* rs/discard-index-discard-array: read-cache: free cache in discard_index read-cache: add simple performance test
Diffstat (limited to 't')
-rwxr-xr-xt/perf/p0002-read-cache.sh14
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 0000000..9180ae9
--- /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