summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-03-05 17:16:50 -0500
committerJunio C Hamano <gitster@pobox.com>2016-03-07 12:27:35 -0800
commit11e6b3f6d544fd6b2914583749b90b29d1d8683d (patch)
treeca7798c3c3c85d7b040a68fa8d90ac0ea177fe35
parent85975c0c7f46aeb5010121959e38c339038758a7 (diff)
downloadgit-jk/startup-info.tar.gz
use setup_git_directory() in test-* programsjk/startup-info
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 <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--test-match-trees.c2
-rw-r--r--test-revision-walking.c2
2 files changed, 4 insertions, 0 deletions
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))
diff --git a/test-revision-walking.c b/test-revision-walking.c
index 285f06b7ff..3d0313354b 100644
--- a/test-revision-walking.c
+++ b/test-revision-walking.c
@@ -50,6 +50,8 @@ int main(int argc, char **argv)
if (argc < 2)
return 1;
+ setup_git_directory();
+
if (!strcmp(argv[1], "run-twice")) {
printf("1st\n");
if (!run_revision_walk())