Signed-off-by: Taylor Blau <me@xxxxxxxxxxxx> --- t/t4216-log-bloom.sh | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/t/t4216-log-bloom.sh b/t/t4216-log-bloom.sh index 0cf208fdf55..c49528b947a 100755 --- a/t/t4216-log-bloom.sh +++ b/t/t4216-log-bloom.sh @@ -404,17 +404,9 @@ test_expect_success 'Bloom generation backfills empty commits' ' ) ' -get_bdat_offset () { - perl -0777 -ne \ - 'print unpack("N", "$1") if /BDAT\0\0\0\0(....)/ or exit 1' \ - .git/objects/info/commit-graph -} - get_first_changed_path_filter () { - BDAT_OFFSET=$(get_bdat_offset) && - perl -0777 -ne \ - 'print unpack("H*", substr($_, '$BDAT_OFFSET' + 12, 2))' \ - .git/objects/info/commit-graph + test-tool read-graph bloom-filters >filters.dat && + head -n 1 filters.dat } # chosen to be the same under all Unicode normalization forms @@ -428,7 +420,7 @@ test_expect_success 'set up repo with high bit path, version 1 changed-path' ' test_expect_success 'setup check value of version 1 changed-path' ' (cd highbit1 && - printf "52a9" >expect && + echo "52a9" >expect && get_first_changed_path_filter >actual && test_cmp expect actual) ' -- 2.41.0.366.g215419bf3c2.dirty