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:
authorSascha Cunz <Sascha@BabbelBox.org>2012-12-17 20:15:58 +0400
committerSascha Cunz <Sascha@BabbelBox.org>2012-12-17 20:15:58 +0400
commit22d23c61ed04a1c37e14e00e29abb951d4d52570 (patch)
tree0567bc802ca8ec1f8b4be75c64dafa9ecb85b726 /tests-clar/clone
parent101659be5da3ceefb0501c738620157b92563afe (diff)
Cleanup the test correctly
Diffstat (limited to 'tests-clar/clone')
-rw-r--r--tests-clar/clone/empty.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests-clar/clone/empty.c b/tests-clar/clone/empty.c
index 93fe151bc..0f0edcb8d 100644
--- a/tests-clar/clone/empty.c
+++ b/tests-clar/clone/empty.c
@@ -22,6 +22,7 @@ void test_clone_empty__initialize(void)
void test_clone_empty__cleanup(void)
{
git_remote_free(g_origin);
+ g_origin = NULL;
cl_git_sandbox_cleanup();
}
@@ -35,6 +36,7 @@ void test_clone_empty__can_clone_an_empty_local_repo_barely(void)
cl_set_cleanup(&cleanup_repository, "./empty");
git_remote_free(g_origin);
+ g_origin = NULL;
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", "./empty_bare.git", GIT_REMOTE_DEFAULT_FETCH));
g_options.bare = true;
@@ -46,6 +48,7 @@ void test_clone_empty__can_clone_an_empty_local_repo(void)
cl_set_cleanup(&cleanup_repository, "./empty");
git_remote_free(g_origin);
+ g_origin = NULL;
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", "./empty_bare.git", GIT_REMOTE_DEFAULT_FETCH));
cl_git_pass(git_clone(&g_repo, g_origin, "./empty", &g_options));
@@ -56,9 +59,9 @@ void test_clone_empty__can_clone_an_empty_standard_repo(void)
cl_git_sandbox_cleanup();
g_repo = cl_git_sandbox_init("empty_standard_repo");
cl_git_remove_placeholders(git_repository_path(g_repo), "dummy-marker.txt");
- git_repository_free(g_repo);
git_remote_free(g_origin);
+ g_origin = NULL;
cl_git_pass(git_remote_new(&g_origin, NULL, "origin", "./empty_standard_repo", GIT_REMOTE_DEFAULT_FETCH));
cl_set_cleanup(&cleanup_repository, "./empty");