summaryrefslogtreecommitdiff
path: root/t/perf/p0004-lazy-init-name-hash.sh
blob: 576bdc3c4e7e94277f769ece3a0f6b654e79f41a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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-lazy-init-name-hash --dump --single >out.single &&
	test-lazy-init-name-hash --dump --multi >out.multi &&
	sort <out.single >sorted.single &&
	sort <out.multi >sorted.multi &&
	test_cmp sorted.single sorted.multi
'

test_expect_success 'multithreaded should be faster' '
	test-lazy-init-name-hash --perf >out.perf
'

test_done