mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
c150064dbe
Mark various existing tests in t00*.sh that invoke git built-ins with TEST_PASSES_SANITIZE_LEAK=true 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). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
31 lines
652 B
Bash
Executable file
31 lines
652 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='test the Windows-only core.unsetenvvars setting'
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
. ./test-lib.sh
|
|
|
|
if ! test_have_prereq MINGW
|
|
then
|
|
skip_all='skipping Windows-specific tests'
|
|
test_done
|
|
fi
|
|
|
|
test_expect_success 'setup' '
|
|
mkdir -p "$TRASH_DIRECTORY/.git/hooks" &&
|
|
write_script "$TRASH_DIRECTORY/.git/hooks/pre-commit" <<-\EOF
|
|
echo $HOBBES >&2
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'core.unsetenvvars works' '
|
|
HOBBES=Calvin &&
|
|
export HOBBES &&
|
|
git commit --allow-empty -m with 2>err &&
|
|
grep Calvin err &&
|
|
git -c core.unsetenvvars=FINDUS,HOBBES,CALVIN \
|
|
commit --allow-empty -m without 2>err &&
|
|
! grep Calvin err
|
|
'
|
|
|
|
test_done
|