summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-05-15 10:09:51 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-10-11 20:06:34 +0100
commitc40d2dc5ff2058bf04d816423507dec42e7dd0cc (patch)
tree6fbb9f6462d46e612631df159212dde66e1ccc86
parent4853d94ca47a6f1ecaa7c24b9034ededcb7e5bff (diff)
downloadlibgit2-c40d2dc5ff2058bf04d816423507dec42e7dd0cc.tar.gz
thread: restore the git_thread_exit tests
We were never properly testing git_thread_exit. Do so.
-rw-r--r--tests/threads/basic.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/threads/basic.c b/tests/threads/basic.c
index ed4fd2f9b..2d7ddc26b 100644
--- a/tests/threads/basic.c
+++ b/tests/threads/basic.c
@@ -54,6 +54,12 @@ static void *return_normally(void *param)
{
return param;
}
+
+static void *exit_abruptly(void *param)
+{
+ git_thread_exit(param);
+ return NULL;
+}
#endif
void test_threads_basic__exit(void)
@@ -70,7 +76,7 @@ void test_threads_basic__exit(void)
cl_assert_equal_sz(424242, (size_t)result);
/* Ensure that the return value of `git_thread_exit` is returned. */
- cl_git_pass(git_thread_create(&thread, return_normally, (void *)232323));
+ cl_git_pass(git_thread_create(&thread, exit_abruptly, (void *)232323));
cl_git_pass(git_thread_join(&thread, &result));
cl_assert_equal_sz(232323, (size_t)result);
#endif