diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-09-25 14:50:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-14 11:09:47 -0500 |
commit | 74b782645ad89b8bd5a18fd3f2cb3be45c38a04f (patch) | |
tree | dbe86794772966ddcbc65c970d0b74a0bdbba16b /src/test/test.c | |
parent | c51f7c23e3af71466f9bd2ae57ae7a2b998ee3e2 (diff) | |
download | tor-74b782645ad89b8bd5a18fd3f2cb3be45c38a04f.tar.gz tor-74b782645ad89b8bd5a18fd3f2cb3be45c38a04f.zip |
Move thread tests into their own module
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test.c b/src/test/test.c index de6efaf873..edc28cd2d4 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1297,6 +1297,7 @@ extern struct testcase_t cell_queue_tests[]; extern struct testcase_t options_tests[]; extern struct testcase_t socks_tests[]; extern struct testcase_t entrynodes_tests[]; +extern struct testcase_t thread_tests[]; extern struct testcase_t extorport_tests[]; extern struct testcase_t controller_event_tests[]; extern struct testcase_t logging_tests[]; @@ -1323,6 +1324,7 @@ static struct testgroup_t testgroups[] = { { "container/", container_tests }, { "util/", util_tests }, { "util/logging/", logging_tests }, + { "util/thread/", thread_tests }, { "cellfmt/", cell_format_tests }, { "cellqueue/", cell_queue_tests }, { "dir/", dir_tests }, |