[svn-commits] mmichelson: branch mmichelson/threadpool r377378 - /team/mmichelson/threadpoo...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Dec 7 13:16:32 CST 2012


Author: mmichelson
Date: Fri Dec  7 13:16:28 2012
New Revision: 377378

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=377378
Log:
Add threadpool destruction test.

It worked on the first try. Fun time.


Modified:
    team/mmichelson/threadpool/tests/test_threadpool.c

Modified: team/mmichelson/threadpool/tests/test_threadpool.c
URL: http://svnview.digium.com/svn/asterisk/team/mmichelson/threadpool/tests/test_threadpool.c?view=diff&rev=377378&r1=377377&r2=377378
==============================================================================
--- team/mmichelson/threadpool/tests/test_threadpool.c (original)
+++ team/mmichelson/threadpool/tests/test_threadpool.c Fri Dec  7 13:16:28 2012
@@ -305,10 +305,64 @@
 	return res;
 }
 
+AST_TEST_DEFINE(threadpool_thread_destruction)
+{
+	struct ast_threadpool *pool = NULL;
+	struct ast_threadpool_listener *listener = NULL;
+	enum ast_test_result_state res = AST_TEST_FAIL;
+	struct test_listener_data *tld;
+
+	switch (cmd) {
+	case TEST_INIT:
+		info->name = "threadpool_thread_destruction";
+		info->category = "/main/threadpool/";
+		info->summary = "Test threadpool thread destruction";
+		info->description =
+			"Ensure that threads are properly destroyed in a threadpool";
+		return AST_TEST_NOT_RUN;
+	case TEST_EXECUTE:
+		break;
+	}
+
+	listener = ast_threadpool_listener_alloc(&test_callbacks);
+	if (!listener) {
+		return AST_TEST_FAIL;
+	}
+	tld = listener->private_data;
+
+	pool = ast_threadpool_create(listener, 0);
+	if (!pool) {
+		goto end;
+	}
+
+	ast_threadpool_set_size(pool, 3);
+
+	WAIT_WHILE(tld, tld->num_idle < 3);
+
+	res = listener_check(test, listener, 0, 0, 0, 0, 3, 0);
+	if (res == AST_TEST_FAIL) {
+		goto end;
+	}
+
+	ast_threadpool_set_size(pool, 2);
+
+	WAIT_WHILE(tld, tld->num_idle > 2);
+
+	res = listener_check(test, listener, 0, 0, 0, 0, 2, 0);
+
+end:
+	if (pool) {
+		ast_threadpool_shutdown(pool);
+	}
+	ao2_cleanup(listener);
+	return res;
+}
+
 static int unload_module(void)
 {
 	ast_test_unregister(threadpool_push);
 	ast_test_unregister(threadpool_thread_creation);
+	ast_test_unregister(threadpool_thread_destruction);
 	return 0;
 }
 
@@ -316,6 +370,7 @@
 {
 	ast_test_register(threadpool_push);
 	ast_test_register(threadpool_thread_creation);
+	ast_test_register(threadpool_thread_destruction);
 	return AST_MODULE_LOAD_SUCCESS;
 }
 




More information about the svn-commits mailing list