On Thu, 29 Feb 2024, Achu Luma <ach.lumap@xxxxxxxxx> wrote: > diff --git a/t/helper/test-tool.c b/t/helper/test-tool.c > index 482a1e58a4..7bfbb75c9b 100644 > --- a/t/helper/test-tool.c > +++ b/t/helper/test-tool.c > @@ -73,7 +73,6 @@ static struct test_cmd cmds[] = { > { "serve-v2", cmd__serve_v2 }, > { "sha1", cmd__sha1 }, > { "sha1-is-sha1dc", cmd__sha1_is_sha1dc }, > - { "sha256", cmd__sha256 }, > { "sigchain", cmd__sigchain }, > { "simple-ipc", cmd__simple_ipc }, > { "strcmp-offset", cmd__strcmp_offset }, > diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h > index b1be7cfcf5..8139c9664d 100644 > --- a/t/helper/test-tool.h > +++ b/t/helper/test-tool.h > @@ -66,7 +66,6 @@ int cmd__serve_v2(int argc, const char **argv); > int cmd__sha1(int argc, const char **argv); > int cmd__sha1_is_sha1dc(int argc, const char **argv); > int cmd__oid_array(int argc, const char **argv); > -int cmd__sha256(int argc, const char **argv); Removing 'test-tool sha256' would break many tests in t53** when GIT_TEST_DEFAULT_HASH=sha256, because it is used in pack_trailer():t/lib-pack.sh. ``` pack_trailer () { test-tool $(test_oid algo) -b <"$1" >trailer.tmp && cat trailer.tmp >>"$1" && rm -f trailer.tmp } ``` Also, I am planning to take over this series, so I will take care of this. Thanks.