mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
20a67e8ce9
Do not use $GIT_BUILD_DIR without quotes; it may contain spaces and be split into fields. But it is not necessary to access test-tool with an absolute path in the first place as it can be found via path lookup. Remove the explicit path. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
27 lines
606 B
Bash
Executable file
27 lines
606 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='Test the lazy init name hash with various folder structures'
|
|
|
|
. ./test-lib.sh
|
|
|
|
if test 1 -eq $(test-tool online-cpus)
|
|
then
|
|
skip_all='skipping lazy-init tests, single cpu'
|
|
test_done
|
|
fi
|
|
|
|
LAZY_THREAD_COST=2000
|
|
|
|
test_expect_success 'no buffer overflow in lazy_init_name_hash' '
|
|
(
|
|
test_seq $LAZY_THREAD_COST | sed "s/^/a_/" &&
|
|
echo b/b/b &&
|
|
test_seq $LAZY_THREAD_COST | sed "s/^/c_/" &&
|
|
test_seq 50 | sed "s/^/d_/" | tr "\n" "/" && echo d
|
|
) |
|
|
sed "s/^/100644 $EMPTY_BLOB /" |
|
|
git update-index --index-info &&
|
|
test-tool lazy-init-name-hash -m
|
|
'
|
|
|
|
test_done
|