From 284283180003a085ce03fb8fac2550a7ac9b9eb0 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Thu, 18 Dec 2014 12:41:59 -0600 Subject: [PATCH] index tests: test capitalization before mkdir --- tests/index/tests.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/index/tests.c b/tests/index/tests.c index d0372f169..a63183e10 100644 --- a/tests/index/tests.c +++ b/tests/index/tests.c @@ -340,8 +340,10 @@ void test_index_tests__add_invalid_filename(void) cl_must_pass(p_mkdir("./invalid/subdir", 0777)); /* cl_git_mkfile() needs the dir to exist */ - cl_must_pass(p_mkdir("./invalid/.GIT", 0777)); - cl_must_pass(p_mkdir("./invalid/.GiT", 0777)); + if (!git_path_exists("./invalid/.GIT")) + cl_must_pass(p_mkdir("./invalid/.GIT", 0777)); + if (!git_path_exists("./invalid/.GiT")) + cl_must_pass(p_mkdir("./invalid/.GiT", 0777)); add_invalid_filename(repo, ".git/hello"); add_invalid_filename(repo, ".GIT/hello");