From: brian m. carlson Date: Sat, 22 Feb 2020 20:17:34 +0000 (+0000) Subject: t/helper/test-dump-split-index: initialize git repository X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=6946e525ae19dc756ff0a2a46abf1d1d30511594;p=git.git t/helper/test-dump-split-index: initialize git repository In this test helper, we read the index. In order to have the proper hash algorithm set up, we must call setup_git_directory. Do so, so that the test works when extensions.objectFormat is set. Signed-off-by: brian m. carlson Signed-off-by: Junio C Hamano --- diff --git a/t/helper/test-dump-split-index.c b/t/helper/test-dump-split-index.c index 63c689d6ee..a209880eb3 100644 --- a/t/helper/test-dump-split-index.c +++ b/t/helper/test-dump-split-index.c @@ -13,6 +13,8 @@ int cmd__dump_split_index(int ac, const char **av) struct split_index *si; int i; + setup_git_directory(); + do_read_index(&the_index, av[1], 1); printf("own %s\n", oid_to_hex(&the_index.oid)); si = the_index.split_index;