From a5c08518e985bd3f0cb274c274c034be37fa5629 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 Sep 2016 03:53:27 +0200 Subject: tests: Add new test to check mutex lock contention Signed-off-by: Michael Adam Reviewed-by: Andreas Schneider --- tests/CMakeLists.txt | 3 +- tests/test_thread_sockets.c | 72 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 tests/test_thread_sockets.c diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 836a5e2..0887a01 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -37,7 +37,8 @@ set(SWRAP_TESTS test_swrap_unit test_max_sockets test_close_failure - test_fork_thread_deadlock) + test_fork_thread_deadlock + test_thread_sockets) if (HAVE_STRUCT_MSGHDR_MSG_CONTROL) set(SWRAP_TESTS ${SWRAP_TESTS} test_sendmsg_recvmsg_fd) diff --git a/tests/test_thread_sockets.c b/tests/test_thread_sockets.c new file mode 100644 index 0000000..364a001 --- /dev/null +++ b/tests/test_thread_sockets.c @@ -0,0 +1,72 @@ +#include "config.h" + +#include +#include +#include +#include + +#include + +#include +#include +#include +#include +#include +#include +#include + +#define NUM_THREADS 10 + +static void *thread_worker(void *arg) +{ + int i; + + (void) arg; /* unused */ + + for (i = 0; i < 1000; i++) { + int s; + + s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); + assert_return_code(s, errno); + + close(s); + } + + return NULL; +} + +static void test_threads_socket(void **state) +{ + pthread_attr_t pthread_custom_attr; + pthread_t threads[NUM_THREADS]; + int i; + + (void) state; /* unused */ + + pthread_attr_init(&pthread_custom_attr); + + for (i = 0; i < NUM_THREADS; i++) { + pthread_create(&threads[i], + &pthread_custom_attr, + thread_worker, + NULL); + } + + for (i = 0; i < NUM_THREADS; i++) { + pthread_join(threads[i], NULL); + } + + pthread_attr_destroy(&pthread_custom_attr); +} + +int main(void) { + int rc; + + const struct CMUnitTest thread_tests[] = { + cmocka_unit_test(test_threads_socket), + }; + + rc = cmocka_run_group_tests(thread_tests, NULL, NULL); + + return rc; +} -- cgit