Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-10-01 01:47:56 +0400
committerBen Straub <bs@github.com>2013-10-01 01:47:56 +0400
commitae5a935290c695d721f69b8836f891a639c0aff3 (patch)
tree8e32956c3074a3f63dcd3f4c392a2c6565432299
parent526d4c949c4b87c01e74a19ab47171ee08c9673a (diff)
Ensure submodule repos and indices are freedignore-submodules-in-stash
...before the helper's cleanup method tries to delete their files.
-rw-r--r--tests-clar/stash/submodules.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/tests-clar/stash/submodules.c b/tests-clar/stash/submodules.c
index 60dbbad2e..137c4408c 100644
--- a/tests-clar/stash/submodules.c
+++ b/tests-clar/stash/submodules.c
@@ -6,9 +6,7 @@ static git_repository *repo;
static git_signature *signature;
static git_oid stash_tip_oid;
-static git_index *smindex;
static git_submodule *sm;
-static git_repository *smrepo;
void test_stash_submodules__initialize(void)
{
@@ -17,8 +15,6 @@ void test_stash_submodules__initialize(void)
repo = setup_fixture_submodules();
cl_git_pass(git_submodule_lookup(&sm, repo, "testrepo"));
- cl_git_pass(git_submodule_open(&smrepo, sm));
- cl_git_pass(git_repository_index(&smindex, smrepo));
}
void test_stash_submodules__cleanup(void)
@@ -29,6 +25,9 @@ void test_stash_submodules__cleanup(void)
void test_stash_submodules__does_not_stash_modified_submodules(void)
{
+ static git_index *smindex;
+ static git_repository *smrepo;
+
assert_status(repo, "modified", GIT_STATUS_WT_MODIFIED);
/* modify file in submodule */
@@ -36,6 +35,8 @@ void test_stash_submodules__does_not_stash_modified_submodules(void)
assert_status(repo, "testrepo", GIT_STATUS_WT_MODIFIED);
/* add file to index in submodule */
+ cl_git_pass(git_submodule_open(&smrepo, sm));
+ cl_git_pass(git_repository_index(&smindex, smrepo));
cl_git_pass(git_index_add_bypath(smindex, "README"));
/* commit changed index of submodule */
@@ -46,10 +47,16 @@ void test_stash_submodules__does_not_stash_modified_submodules(void)
assert_status(repo, "testrepo", GIT_STATUS_WT_MODIFIED);
assert_status(repo, "modified", GIT_STATUS_CURRENT);
+
+ git_index_free(smindex);
+ git_repository_free(smrepo);
}
void test_stash_submodules__stash_is_empty_with_modified_submodules(void)
{
+ static git_index *smindex;
+ static git_repository *smrepo;
+
cl_git_pass(git_stash_save(&stash_tip_oid, repo, signature, NULL, GIT_STASH_DEFAULT));
assert_status(repo, "modified", GIT_STATUS_CURRENT);
@@ -58,6 +65,8 @@ void test_stash_submodules__stash_is_empty_with_modified_submodules(void)
assert_status(repo, "testrepo", GIT_STATUS_WT_MODIFIED);
/* add file to index in submodule */
+ cl_git_pass(git_submodule_open(&smrepo, sm));
+ cl_git_pass(git_repository_index(&smindex, smrepo));
cl_git_pass(git_index_add_bypath(smindex, "README"));
/* commit changed index of submodule */
@@ -65,4 +74,7 @@ void test_stash_submodules__stash_is_empty_with_modified_submodules(void)
assert_status(repo, "testrepo", GIT_STATUS_WT_MODIFIED);
cl_git_fail_with(git_stash_save(&stash_tip_oid, repo, signature, NULL, GIT_STASH_DEFAULT), GIT_ENOTFOUND);
+
+ git_index_free(smindex);
+ git_repository_free(smrepo);
}