From: brian m. carlson Date: Wed, 29 Jul 2020 23:13:50 +0000 (+0000) Subject: t: make test-bloom initialize repository X-Git-Tag: v2.29.0-rc0~178^2~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=094a685cd7312da3e89ee57e6a6f2b8aaf328718;p=thirdparty%2Fgit.git t: make test-bloom initialize repository The bloom filter code relies on reading object IDs using parse_oid_hex. In order to make that work with an appropriate size, we need to have initialized the repository's hash algorithm. Since the values we're processing depend on the repository in use, let's set up the repository when we run the test helper. Signed-off-by: brian m. carlson Reviewed-by: Eric Sunshine Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-bloom.c b/t/helper/test-bloom.c index f0aa80b98e..5e77d56f59 100644 --- a/t/helper/test-bloom.c +++ b/t/helper/test-bloom.c @@ -50,6 +50,8 @@ static const char *bloom_usage = "\n" int cmd__bloom(int argc, const char **argv) { + setup_git_directory(); + if (argc < 2) usage(bloom_usage);