revisions API: have release_revisions() release "filter"
Extend the the release_revisions() function so that it frees the
"filter" in the "struct rev_info". This in combination with a
preceding change to free "cmdline" means that we can mark another set
of tests as passing under "TEST_PASSES_SANITIZE_LEAK=true".
The "filter" member was added recently in ffaa137f646 (revision: put
object filter into struct rev_info, 2022-03-09), and this fixes leaks
intruded in the subsequent leak 7940941de1f (pack-objects: use
rev.filter when possible, 2022-03-09) and 105c6f14ad3 (bundle: parse
filter capability, 2022-03-09).
The "builtin/pack-objects.c" leak in 7940941de1f was effectively with
us already, but the variable was referred to by a "static" file-scoped
variable. The "bundle.c " leak in 105c6f14ad3 was newly introduced
with the new "filter" feature for bundles.
The "t5600-clone-fail-cleanup.sh" change here to add
"TEST_PASSES_SANITIZE_LEAK=true" is one of the cases where
run-command.c in not carrying the abort() exit code upwards would have
had that test passing before, but now it *actually* passes[1]. We
should fix the lack of 1=1 mapping of SANITIZE=leak testing to actual
leaks some other time, but it's an existing edge case, let's just mark
the really-passing test as passing for now.
1. https://lore.kernel.org/git/220303.86fsnz5o9w.gmgdl@evledraar.gmail.com/
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Ævar Arnfjörð Bjarmason committedApr 13, 2022 at 22:01 UTCe75d2f7f73420884c50613a8242812b55ad2a8fa
index e8a58b1589..5b8e47e346 100755--- a/t/t1060-object-corruption.sh+++ b/t/t1060-object-corruption.sh@@ -2,6 +2,7 @@ test_description='see how we handle various forms of corruption'+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh # convert "1234abcd" to ".git/objects/12/34abcd"
t/t2015-checkout-unborn.sh
+1
index a9721215fa..9425aae639 100755--- a/t/t2015-checkout-unborn.sh+++ b/t/t2015-checkout-unborn.sh@@ -4,6 +4,7 @@ test_description='checkout from unborn branch' GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' '
index 535313e4dc..cc4cfaa9d3 100755--- a/t/t5313-pack-bounds-checks.sh+++ b/t/t5313-pack-bounds-checks.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='bounds-checking of access to mmapped on-disk file formats'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh clear_base () {
t/t5316-pack-delta-depth.sh
+2
index e9045009a1..eb4ef3dda4 100755--- a/t/t5316-pack-delta-depth.sh+++ b/t/t5316-pack-delta-depth.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='pack-objects breaks long cross-pack delta chains'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh # This mirrors a repeated push setup:
t/t5320-delta-islands.sh
+2
index fea92a5777..124d47603d 100755--- a/t/t5320-delta-islands.sh+++ b/t/t5320-delta-islands.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='exercise delta islands'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh # returns true iff $1 is a delta based on $2
index 9c2798603b..d664912799 100755--- a/t/t5532-fetch-proxy.sh+++ b/t/t5532-fetch-proxy.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='fetching via git:// using core.gitproxy'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup remote repo' '
t/t5600-clone-fail-cleanup.sh
+1
index 34b3df4027..c814afa565 100755--- a/t/t5600-clone-fail-cleanup.sh+++ b/t/t5600-clone-fail-cleanup.sh@@ -13,6 +13,7 @@ Unless the directory already exists, in which case we clean up only what we wrote. '+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh corrupt_repo () {
t/t5900-repo-selection.sh
+2
index 14e59c5b3e..a84faac242 100755--- a/t/t5900-repo-selection.sh+++ b/t/t5900-repo-selection.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='selecting remote repo in ambiguous cases'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh reset() {
t/t6101-rev-parse-parents.sh
+1
index c571fa5179..a3a41c7a3e 100755--- a/t/t6101-rev-parse-parents.sh+++ b/t/t6101-rev-parse-parents.sh@@ -8,6 +8,7 @@ test_description='Test git rev-parse with different parent options' GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME+TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_cmp_rev_output () {
t/t6114-keep-packs.sh
+2
index 9239d8aa46..44246f8a63 100755--- a/t/t6114-keep-packs.sh+++ b/t/t6114-keep-packs.sh@@ -1,6 +1,8 @@ #!/bin/sh test_description='rev-list with .keep packs'++TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' '