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:
authorVicent Marti <tanoku@gmail.com>2013-04-16 19:46:41 +0400
committerVicent Marti <tanoku@gmail.com>2013-04-16 19:46:41 +0400
commita50086d174658914d4d6462afbc83b02825b1f5b (patch)
treee8daa1c7bf678222cf351445179837bed7db3a72 /tests-clar/threads/basic.c
parent5b9fac39d8a76b9139667c26a63e6b3f204b3977 (diff)
parentf124ebd457bfbf43de3516629aaba5a279636e04 (diff)
Merge branch 'development'v0.18.0
Diffstat (limited to 'tests-clar/threads/basic.c')
-rw-r--r--tests-clar/threads/basic.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/tests-clar/threads/basic.c b/tests-clar/threads/basic.c
index 2b1c36808..a15c53140 100644
--- a/tests-clar/threads/basic.c
+++ b/tests-clar/threads/basic.c
@@ -5,16 +5,19 @@
static git_repository *g_repo;
-void test_threads_basic__initialize(void) {
- g_repo = cl_git_sandbox_init("testrepo");
+void test_threads_basic__initialize(void)
+{
+ g_repo = cl_git_sandbox_init("testrepo");
}
-void test_threads_basic__cleanup(void) {
- cl_git_sandbox_cleanup();
+void test_threads_basic__cleanup(void)
+{
+ cl_git_sandbox_cleanup();
}
-void test_threads_basic__cache(void) {
- // run several threads polling the cache at the same time
- cl_assert(1 == 1);
+void test_threads_basic__cache(void)
+{
+ // run several threads polling the cache at the same time
+ cl_assert(1 == 1);
}