]> git.ipfire.org Git - thirdparty/git.git/commitdiff
revisions API: have release_revisions() release "filter"
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Wed, 13 Apr 2022 20:01:48 +0000 (22:01 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Apr 2022 06:56:09 +0000 (23:56 -0700)
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>
18 files changed:
revision.c
t/t1060-object-corruption.sh
t/t2015-checkout-unborn.sh
t/t4207-log-decoration-colors.sh
t/t5301-sliding-window.sh
t/t5313-pack-bounds-checks.sh
t/t5316-pack-delta-depth.sh
t/t5320-delta-islands.sh
t/t5322-pack-objects-sparse.sh
t/t5506-remote-groups.sh
t/t5513-fetch-track.sh
t/t5532-fetch-proxy.sh
t/t5600-clone-fail-cleanup.sh
t/t5900-repo-selection.sh
t/t6101-rev-parse-parents.sh
t/t6114-keep-packs.sh
t/t7702-repack-cyclic-alternate.sh
t/t9127-git-svn-partial-rebuild.sh

index de4076e77de1beb0db139513034174ca5ec222ea..a9d6d3a8dca6aef6851d69dbeef0ae461ae3558c 100644 (file)
@@ -2948,6 +2948,7 @@ void release_revisions(struct rev_info *revs)
        free_commit_list(revs->commits);
        object_array_clear(&revs->pending);
        release_revisions_cmdline(&revs->cmdline);
+       list_objects_filter_release(&revs->filter);
        release_revisions_mailmap(revs->mailmap);
 }
 
index e8a58b1589775d82e7005c86cadb7a4fea10d61e..5b8e47e346c710ac4ddb4592d707c9b9fdf358a7 100755 (executable)
@@ -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"
index a9721215fab540ccf6ce1e12f2c5066b620cac6b..9425aae6395838b3d0fd57b8cf8fe228d1db335f 100755 (executable)
@@ -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 b8709424981e92b84f754f520faafe7c4751bf46..36ac6aff1e40dd8ebc1bc894bf63d2228bcd32a3 100755 (executable)
@@ -8,6 +8,7 @@ test_description='Test for "git log --decorate" colors'
 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 76f9798ab958cae2414cbcc496bbb22af85f0ac5..3ccaaeb397774da8978c5406840ec307ffe7564d 100755 (executable)
@@ -4,6 +4,8 @@
 #
 
 test_description='mmap sliding window tests'
+
+TEST_PASSES_SANITIZE_LEAK=true
 . ./test-lib.sh
 
 test_expect_success \
index 535313e4dc8469ba9a4dc79eb75ae1f6e58cd2b0..cc4cfaa9d3712684f57f34372a4f40d0abf11f7e 100755 (executable)
@@ -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 () {
index e9045009a1105d09caaea43b830548f77707b096..eb4ef3dda4d6e501b9be6c7b85d90a0fd55e5c7f 100755 (executable)
@@ -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:
index fea92a5777fd17580539c95513a9869abb6f3773..124d47603df4ae71a9a1eeee9059752855f6860b 100755 (executable)
@@ -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 d39958c066de5e3739b48a4a3a64cb46f21f6700..770695c9278292285f7c5ed2fd65a80d7169d92f 100755 (executable)
@@ -4,6 +4,7 @@ test_description='pack-objects object selection using sparse algorithm'
 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 repo' '
index 8f150c0793e4be0ee2a2fe6e07512da4e0717f7b..5bac03ede81b4f964a91df275e3620f9da476c46 100755 (executable)
@@ -4,6 +4,7 @@ test_description='git remote group handling'
 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 
+TEST_PASSES_SANITIZE_LEAK=true
 . ./test-lib.sh
 
 mark() {
index 65d1e05bd62af9c2b6dfa6cdd841d03622bf94ac..c46c4dbaefc729d8f26a65d6c797682f03d4d130 100755 (executable)
@@ -2,6 +2,7 @@
 
 test_description='fetch follows remote-tracking branches correctly'
 
+TEST_PASSES_SANITIZE_LEAK=true
 . ./test-lib.sh
 
 test_expect_success setup '
index 9c2798603b4d7b4a3db135febedc71e8cea23635..d664912799b43aef1b0a35d4d4a87ac95de36f4a 100755 (executable)
@@ -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' '
index 34b3df4027593b58582b4742d36a211aec57a526..c814afa5656cca57469d0bff5711bc25229d037a 100755 (executable)
@@ -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 () {
index 14e59c5b3e4239c3d41d01f3c6a0d821dfe4e260..a84faac242d0406f523a78bd201ddcb59ae3acd8 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/sh
 
 test_description='selecting remote repo in ambiguous cases'
+
+TEST_PASSES_SANITIZE_LEAK=true
 . ./test-lib.sh
 
 reset() {
index c571fa517978818703e29c72e36faf52643a8ee5..a3a41c7a3e47899521d63c056532604a7d224c97 100755 (executable)
@@ -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 () {
index 9239d8aa46d8968d71fc678763e77faf9611e5ad..44246f8a63e55f275b3b6f32ac289f2c1adb85e7 100755 (executable)
@@ -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' '
index 93b74867ac8f005fa3ef7831b066d236f18dfb12..f3cdb98eec26b8b2d8cd138d6740a77802f84ae4 100755 (executable)
@@ -4,6 +4,8 @@
 #
 
 test_description='repack involving cyclic alternate'
+
+TEST_PASSES_SANITIZE_LEAK=true
 . ./test-lib.sh
 
 test_expect_success setup '
index 90b1b30dde5b96383ec7f66dc3848ef7cd2fb7b1..97f495bd49b48a159aa7e39596b42cbbd65dbdf3 100755 (executable)
@@ -5,7 +5,6 @@
 
 test_description='git svn partial-rebuild tests'
 
-TEST_FAILS_SANITIZE_LEAK=true
 . ./lib-git-svn.sh
 
 test_expect_success 'initialize svnrepo' '