summaryrefslogtreecommitdiff
path: root/t/perf
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-02-03 14:16:07 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-02-03 14:16:07 -0800
commitad25723e69606d9f4f3596eeb427fde3abee76c3 (patch)
treec02dbf8b2fdc076220de3862410b4cef5cb2078f /t/perf
parentMerge branch 'ls/travis-prove-order' (diff)
parentresolve_gitlink_ref: ignore non-repository paths (diff)
downloadtgif-ad25723e69606d9f4f3596eeb427fde3abee76c3.tar.xz
Merge branch 'jk/ref-cache-non-repository-optim'
The underlying machinery used by "ls-files -o" and other commands have been taught not to create empty submodule ref cache for a directory that is not a submodule. This removes a ton of wasted CPU cycles. * jk/ref-cache-non-repository-optim: resolve_gitlink_ref: ignore non-repository paths clean: make is_git_repository a public function
Diffstat (limited to 't/perf')
-rwxr-xr-xt/perf/p7300-clean.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/perf/p7300-clean.sh b/t/perf/p7300-clean.sh
index ec94cdd657..7c1888a27e 100755
--- a/t/perf/p7300-clean.sh
+++ b/t/perf/p7300-clean.sh
@@ -28,4 +28,8 @@ test_perf 'clean many untracked sub dirs, ignore nested git' '
git clean -n -q -f -f -d 100000_sub_dirs/
'
+test_perf 'ls-files -o' '
+ git ls-files -o
+'
+
test_done