You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/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
|