diff options
author | Jeff King <peff@peff.net> | 2023-10-03 22:26:09 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-10-03 23:28:23 +0200 |
commit | be4b578c69e0ac1d974ebc9163ff5793a018da8e (patch) | |
tree | 50f9b2930f0e89fab9be38a6c86f0152f6087205 /t | |
parent | The fourteenth batch (diff) | |
download | git-be4b578c69e0ac1d974ebc9163ff5793a018da8e.tar.xz git-be4b578c69e0ac1d974ebc9163ff5793a018da8e.zip |
t6700: mark test as leak-free
This test has never leaked since it was added. Let's annotate it to make
sure it stays that way (and to reduce noise when looking for other
leak-free scripts after we fix some leaks).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t6700-tree-depth.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t6700-tree-depth.sh b/t/t6700-tree-depth.sh index e410c41234..9e70a7c763 100755 --- a/t/t6700-tree-depth.sh +++ b/t/t6700-tree-depth.sh @@ -1,6 +1,8 @@ #!/bin/sh test_description='handling of deep trees in various commands' + +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh # We'll test against two depths here: a small one that will let us check the |