summaryrefslogtreecommitdiff
path: root/src/test/test.c
diff options
context:
space:
mode:
authorOla Bini <ola@olabini.se>2015-09-15 17:37:25 +0200
committerOla Bini <ola@olabini.se>2015-09-15 17:37:25 +0200
commitcf4f50f94332615abcf6dd345ee1e8fce69232ca (patch)
tree5c556228f1d4605aff25af1909bad3e4e1b6fb99 /src/test/test.c
parenta444b11323799536b4cd7902e29f711b0806293a (diff)
downloadtor-cf4f50f94332615abcf6dd345ee1e8fce69232ca.tar.gz
tor-cf4f50f94332615abcf6dd345ee1e8fce69232ca.zip
Add tests for util_process
Diffstat (limited to 'src/test/test.c')
-rw-r--r--src/test/test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test.c b/src/test/test.c
index e10e260266..a4315389f4 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -1158,6 +1158,7 @@ extern struct testcase_t socks_tests[];
extern struct testcase_t status_tests[];
extern struct testcase_t thread_tests[];
extern struct testcase_t util_tests[];
+extern struct testcase_t util_process_tests[];
extern struct testcase_t dns_tests[];
struct testgroup_t testgroups[] = {
@@ -1204,8 +1205,8 @@ struct testgroup_t testgroups[] = {
{ "status/" , status_tests },
{ "util/", util_tests },
{ "util/logging/", logging_tests },
+ { "util/process/", util_process_tests },
{ "util/thread/", thread_tests },
{ "dns/", dns_tests },
END_OF_GROUPS
};
-