summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-10-03 12:44:34 -0700
committerBen Straub <bs@github.com>2013-10-04 19:27:12 -0700
commitcfd192b0140f004404a208cde967ac8eef16cdff (patch)
treed252941b2e136750de65d3b0818d88fc7335b536
parentec5fe2da8b4afe0b65156477f3cfbb30b9a25643 (diff)
downloadlibgit2-cfd192b0140f004404a208cde967ac8eef16cdff.tar.gz
Add test for multiple thread init/shutdown
-rw-r--r--tests-clar/threads/basic.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests-clar/threads/basic.c b/tests-clar/threads/basic.c
index a15c53140..a329ee7f9 100644
--- a/tests-clar/threads/basic.c
+++ b/tests-clar/threads/basic.c
@@ -21,3 +21,16 @@ void test_threads_basic__cache(void)
// run several threads polling the cache at the same time
cl_assert(1 == 1);
}
+
+void test_threads_basic__multiple_init(void)
+{
+ git_repository *nested_repo;
+
+ git_threads_init();
+ cl_git_pass(git_repository_open(&nested_repo, cl_fixture("testrepo.git")));
+ git_repository_free(nested_repo);
+
+ git_threads_shutdown();
+ cl_git_pass(git_repository_open(&nested_repo, cl_fixture("testrepo.git")));
+ git_repository_free(nested_repo);
+}