From 11e6b3f6d544fd6b2914583749b90b29d1d8683d Mon Sep 17 00:00:00 2001 From: Jeff King Date: Sat, 5 Mar 2016 17:16:50 -0500 Subject: use setup_git_directory() in test-* programs Some of the test-* programs rely on examining refs, but did not bother to make sure we are actually in a git repository. Let's have them call setup_git_directory() to do so. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- test-match-trees.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test-match-trees.c') diff --git a/test-match-trees.c b/test-match-trees.c index 109f03e711..4dad7095f1 100644 --- a/test-match-trees.c +++ b/test-match-trees.c @@ -6,6 +6,8 @@ int main(int ac, char **av) unsigned char hash1[20], hash2[20], shifted[20]; struct tree *one, *two; + setup_git_directory(); + if (get_sha1(av[1], hash1)) die("cannot parse %s as an object name", av[1]); if (get_sha1(av[2], hash2)) -- cgit v1.3