summaryrefslogtreecommitdiff
path: root/t/t3006-ls-files-long.sh
Commit message (Collapse)AuthorAgeFilesLines
* leak tests: mark some ls-files tests as passing with SANITIZE=leakÆvar Arnfjörð Bjarmason2021-10-121-0/+2
| | | | | | | | | | | Mark some tests that match "*ls-files*" as passing when git is compiled with SANITIZE=leak. They'll now be listed as running under the "GIT_TEST_PASSING_SANITIZE_LEAK=true" test mode (the "linux-leaks" CI target). We still have others that match '*ls-files*" that fail under SANITIZE=leak. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* t3000-t3999: fix broken &&-chainsEric Sunshine2018-07-161-1/+1
| | | | | Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* cache_name_compare(): do not truncate while comparing pathsJunio C Hamano2012-07-111-0/+39
We failed to use ce_namelen() equivalent and instead only compared up to the CE_NAMEMASK bytes by mistake. Adding an overlong path that shares the same common prefix as an existing entry in the index did not add a new entry, but instead replaced the existing one, as the result. Signed-off-by: Junio C Hamano <gitster@pobox.com>