1c002d0a9e
The test library puts helpers into $PATH, so we can simply call them without specifying their location. The suffix $X is also not necessary because .exe files on Windows can be started without specifying their extension, and on other platforms it's empty anyway. Signed-off-by: Rene Scharfe <l.s.r@web.de> Acked-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
474 B
Bash
Executable File
20 lines
474 B
Bash
Executable File
#!/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 | sort >out.single &&
|
|
test-lazy-init-name-hash --dump --multi | sort >out.multi &&
|
|
test_cmp out.single out.multi
|
|
'
|
|
|
|
test_expect_success 'multithreaded should be faster' '
|
|
test-lazy-init-name-hash --perf >out.perf
|
|
'
|
|
|
|
test_done
|