mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
7ff24785cb
Mark some tests that match "*{mktree,commit,diff,grep,rm,merge,hunk}*" 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). These were picked because we still have a lot of failures in adjacent areas, and we didn't have much if any coverage of e.g. grep and diff before this change, we could still whitelist a lot more tests, but let's stop for now. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
458 B
Bash
Executable file
20 lines
458 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='grep icase on non-English locales'
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
. ./lib-gettext.sh
|
|
|
|
test_expect_success GETTEXT_ISO_LOCALE 'setup' '
|
|
printf "TILRAUN: Halló Heimur!" >file &&
|
|
git add file &&
|
|
LC_ALL="$is_IS_iso_locale" &&
|
|
export LC_ALL
|
|
'
|
|
|
|
test_expect_success GETTEXT_ISO_LOCALE,PCRE 'grep pcre string' '
|
|
git grep --perl-regexp -i "TILRAUN: H.lló Heimur!" &&
|
|
git grep --perl-regexp -i "TILRAUN: H.LLÓ HEIMUR!"
|
|
'
|
|
|
|
test_done
|