about summary refs log tree commit diff
path: root/third_party/git/t/perf/p0004-lazy-init-name-hash.sh
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-21T10·03+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·29+0300
commit43b1791ec601732ac31195df96781a848360a9ac (patch)
treedaae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/perf/p0004-lazy-init-name-hash.sh
parent2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff)
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping
it in sync with cgit would be easier this way, but it has proven not
to be a big issue.

On the other hand, a vendored copy of git is an annoying maintenance
burden. It is much easier to rebase the single (dottime) patch that we
have.

This removes the vendored copy of git and instead passes the git
source code to cgit via `pkgs.srcOnly`, which includes the applied
patch so that cgit can continue rendering dottime.

Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/perf/p0004-lazy-init-name-hash.sh')
-rwxr-xr-xthird_party/git/t/perf/p0004-lazy-init-name-hash.sh56
1 files changed, 0 insertions, 56 deletions
diff --git a/third_party/git/t/perf/p0004-lazy-init-name-hash.sh b/third_party/git/t/perf/p0004-lazy-init-name-hash.sh
deleted file mode 100755
index 1afc08fe7f19..000000000000
--- a/third_party/git/t/perf/p0004-lazy-init-name-hash.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/sh
-
-test_description='Tests multi-threaded lazy_init_name_hash'
-. ./perf-lib.sh
-
-test_perf_large_repo
-test_checkout_worktree
-
-test_expect_success 'verify both methods build the same hashmaps' '
-	test-tool lazy-init-name-hash --dump --single >out.single &&
-	if test-tool lazy-init-name-hash --dump --multi >out.multi
-	then
-		test_set_prereq REPO_BIG_ENOUGH_FOR_MULTI &&
-		sort <out.single >sorted.single &&
-		sort <out.multi >sorted.multi &&
-		test_cmp sorted.single sorted.multi
-	fi
-'
-
-test_expect_success 'calibrate' '
-	entries=$(wc -l <out.single) &&
-
-	case $entries in
-	?) count=1000000 ;;
-	??) count=100000 ;;
-	???) count=10000 ;;
-	????) count=1000 ;;
-	?????) count=100 ;;
-	??????) count=10 ;;
-	*) count=1 ;;
-	esac &&
-	export count &&
-
-	case $entries in
-	1) entries_desc="1 entry" ;;
-	*) entries_desc="$entries entries" ;;
-	esac &&
-
-	case $count in
-	1) count_desc="1 round" ;;
-	*) count_desc="$count rounds" ;;
-	esac &&
-
-	desc="$entries_desc, $count_desc" &&
-	export desc
-'
-
-test_perf "single-threaded, $desc" "
-	test-tool lazy-init-name-hash --single --count=$count
-"
-
-test_perf REPO_BIG_ENOUGH_FOR_MULTI "multi-threaded, $desc" "
-	test-tool lazy-init-name-hash --multi --count=$count
-"
-
-test_done