diff options
author | Taylor Blau <me@ttaylorr.com> | 2023-04-13 00:20:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-13 16:55:45 +0200 |
commit | b77919ed6e365f4a7208b41fe85fff8e2e63eff7 (patch) | |
tree | 066e2efcb03e07146b8a565aeef51f4492c6ae9e /t/t5325-reverse-index.sh | |
parent | pack-write.c: plug a leak in stage_tmp_packfiles() (diff) | |
download | git-b77919ed6e365f4a7208b41fe85fff8e2e63eff7.tar.xz git-b77919ed6e365f4a7208b41fe85fff8e2e63eff7.zip |
t5325: mark as leak-free
This test is leak-free as of the previous commit, so let's mark it as
such to ensure we don't regress and introduce a leak in the future.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Acked-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5325-reverse-index.sh')
-rwxr-xr-x | t/t5325-reverse-index.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t5325-reverse-index.sh b/t/t5325-reverse-index.sh index d042d26f2b..48c14d8576 100755 --- a/t/t5325-reverse-index.sh +++ b/t/t5325-reverse-index.sh @@ -1,6 +1,8 @@ #!/bin/sh test_description='on-disk reverse index' + +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh # The below tests want control over the 'pack.writeReverseIndex' setting |