From c161ed47869ad4a20ec24357e0546bdbb6872b13 Mon Sep 17 00:00:00 2001 From: Karthik Nayak Date: Tue, 20 May 2025 12:31:18 +0200 Subject: [PATCH 1/2] EDITME: cover title for kn-remove-unexpected-exported # Describe the purpose of this series. The information you put here # will be used by the project maintainer to make a decision whether # your patches should be reviewed, and in what priority order. Please be # very detailed and link to any relevant discussions or sites that the # maintainer can review to better understand your proposed changes. If you # only have a single patch in your series, the contents of the cover # letter will be appended to the "under-the-cut" portion of the patch. # Lines starting with # will be removed from the cover letter. You can # use them to add notes or reminders to yourself. If you want to use # markdown headers in your cover letter, start the line with ">#". # You can add trailers to the cover letter. Any email addresses found in # these trailers will be added to the addresses specified/generated # during the b4 send stage. You can also run "b4 prep --auto-to-cc" to # auto-populate the To: and Cc: trailers based on the code being # modified. Signed-off-by: Karthik Nayak --- b4-submit-tracking --- # This section is used internally by b4 prep for tracking purposes. { "series": { "revision": 1, "change-id": "20250520-kn-remove-unexpected-exported-163a97739bf9", "prefixes": [] } } -- GitLab From 2597319a5ce3256be61e5715e37ead34400ced7c Mon Sep 17 00:00:00 2001 From: Karthik Nayak Date: Tue, 20 May 2025 12:26:49 +0200 Subject: [PATCH 2/2] t: remove unexpected SANITIZE_LEAK variables As of 1fc7ddf35b (test-lib: unconditionally enable leak checking, 2024-11-20) we've deprecated both the `GIT_TEST_PASSING_SANITIZE_LEAK` and `TEST_PASSES_SANITIZE_LEAK` variables. However, some newly added tests include them by mistake. Let's clean this up. Signed-off-by: Karthik Nayak --- t/perf/p5313-pack-objects.sh | 3 --- t/perf/p5314-name-hash.sh | 3 --- t/t6601-path-walk.sh | 2 -- 3 files changed, 8 deletions(-) diff --git a/t/perf/p5313-pack-objects.sh b/t/perf/p5313-pack-objects.sh index be5229a0ecd..786a2c1c6f5 100755 --- a/t/perf/p5313-pack-objects.sh +++ b/t/perf/p5313-pack-objects.sh @@ -3,9 +3,6 @@ test_description='Tests pack performance using bitmaps' . ./perf-lib.sh -GIT_TEST_PASSING_SANITIZE_LEAK=0 -export GIT_TEST_PASSING_SANITIZE_LEAK - test_perf_large_repo test_expect_success 'create rev input' ' diff --git a/t/perf/p5314-name-hash.sh b/t/perf/p5314-name-hash.sh index 4ef0ba77114..235cdfc824e 100755 --- a/t/perf/p5314-name-hash.sh +++ b/t/perf/p5314-name-hash.sh @@ -3,9 +3,6 @@ test_description='Tests pack performance using bitmaps' . ./perf-lib.sh -GIT_TEST_PASSING_SANITIZE_LEAK=0 -export GIT_TEST_PASSING_SANITIZE_LEAK - test_perf_large_repo test_size 'paths at head' ' diff --git a/t/t6601-path-walk.sh b/t/t6601-path-walk.sh index c89b0f1e19d..8d187f7279c 100755 --- a/t/t6601-path-walk.sh +++ b/t/t6601-path-walk.sh @@ -1,7 +1,5 @@ #!/bin/sh -TEST_PASSES_SANITIZE_LEAK=true - test_description='direct path-walk API tests' . ./test-lib.sh -- GitLab