From 92cf54eec6d173969af445c18bc47aab80bbea79 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 31 Aug 2026 21:23:09 -0700 Subject: [PATCH] fixup! last-modified: keep per-path Bloom filters for wildcard pathspecs --- t/t8020-last-modified.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/t8020-last-modified.sh b/t/t8020-last-modified.sh index a1ff351822..fb46f38772 100755 --- a/t/t8020-last-modified.sh +++ b/t/t8020-last-modified.sh @@ -304,11 +304,13 @@ test_expect_success 'last-modified with Bloom filters and top-level wildcard' ' test_commit sub-c d/b.c && git commit-graph write --reachable --changed-paths && + GIT_TEST_COMMIT_GRAPH=0 \ GIT_TRACE2_PERF="$(pwd)/off.perf" \ git -c core.commitGraph=false last-modified -r HEAD \ -- "*.c" >expect && test_grep "data .* bloom_queries:0$" off.perf && + GIT_TEST_COMMIT_GRAPH=1 \ GIT_TRACE2_PERF="$(pwd)/on.perf" \ git -c core.commitGraph=true last-modified -r HEAD \ -- "*.c" >actual &&