diff options
| author | Vicent Martà <vicent@github.com> | 2013-10-05 07:56:03 -0700 |
|---|---|---|
| committer | Vicent Martà <vicent@github.com> | 2013-10-05 07:56:03 -0700 |
| commit | 711333efe1c1388c39cd76480273b4fcea18d491 (patch) | |
| tree | 3bec12fb3966e5733e739ceb638cfef4008b97ed /tests-clar/threads/basic.c | |
| parent | ec5fe2da8b4afe0b65156477f3cfbb30b9a25643 (diff) | |
| parent | 22661448973e3c46f2a71a75364630a5111f7c14 (diff) | |
| download | libgit2-711333efe1c1388c39cd76480273b4fcea18d491.tar.gz | |
Merge pull request #1890 from libgit2/multiple-init
Multiple init
Diffstat (limited to 'tests-clar/threads/basic.c')
| -rw-r--r-- | tests-clar/threads/basic.c | 13 |
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); +} |
