mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-11 19:22:58 -06:00
t: mark a bunch of tests as leak-free
There are a bunch of tests which do not have any leaks:
- t0411: Introduced via 5c5a4a1c05 (t0411: add tests for cloning from
partial repo, 2024-01-28), passes since its inception.
- t0610: Introduced via 57db2a094d (refs: introduce reftable backend,
2024-02-07), passes since its inception.
- t2405: Passes since 6741e917de (repository: avoid leaking
`fsmonitor` data, 2024-04-12).
- t7423: Introduced via b20c10fd9b (t7423: add tests for symlinked
submodule directories, 2024-01-28), passes since e8d0608944
(submodule: require the submodule path to contain directories only,
2024-03-26). The fix is not obviously related, but probably works
because we now die early in many code paths.
- t9xxx: All of these are exercising CVS-related tooling and pass
since at least Git v2.40. It's likely that these pass for a long
time already, but nobody ever noticed because Git developers do not
tend to have CVS on their machines.
Mark all of these tests as passing.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
9fd369377d
commit
fba95dad6a
@ -2,6 +2,7 @@
|
||||
|
||||
test_description='check that local clone does not fetch from promisor remotes'
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
test_expect_success 'create evil repo' '
|
||||
|
||||
@ -10,6 +10,7 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
GIT_TEST_DEFAULT_REF_FORMAT=reftable
|
||||
export GIT_TEST_DEFAULT_REF_FORMAT
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
INVALID_OID=$(test_oid 001)
|
||||
|
||||
@ -5,6 +5,7 @@ test_description='Combination of submodules and multiple worktrees'
|
||||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
base_path=$(pwd -P)
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
|
||||
test_description='check that submodule operations do not follow symlinks'
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
test_expect_success 'prepare' '
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
#
|
||||
test_description='Test export of commits to CVS'
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
if ! test_have_prereq PERL; then
|
||||
|
||||
@ -12,6 +12,7 @@ repository using cvs CLI client via git-cvsserver server'
|
||||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./test-lib.sh
|
||||
|
||||
marked_as () {
|
||||
|
||||
@ -4,6 +4,7 @@ test_description='git cvsimport basic tests'
|
||||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./lib-cvs.sh
|
||||
|
||||
if ! test_have_prereq NOT_ROOT; then
|
||||
|
||||
@ -35,6 +35,7 @@ test_description='git cvsimport handling of vendor branches'
|
||||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./lib-cvs.sh
|
||||
|
||||
setup_cvs_test_repository t9601
|
||||
|
||||
@ -7,6 +7,7 @@ test_description='git cvsimport handling of branches and tags'
|
||||
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
|
||||
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./lib-cvs.sh
|
||||
|
||||
setup_cvs_test_repository t9602
|
||||
|
||||
@ -12,6 +12,8 @@
|
||||
# bug.
|
||||
|
||||
test_description='git cvsimport testing for correct patchset estimation'
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./lib-cvs.sh
|
||||
|
||||
setup_cvs_test_repository t9603
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
test_description='git cvsimport timestamps'
|
||||
|
||||
TEST_PASSES_SANITIZE_LEAK=true
|
||||
. ./lib-cvs.sh
|
||||
|
||||
test_lazy_prereq POSIX_TIMEZONE '
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user