diff options
author | Ola Bini <ola@olabini.se> | 2015-09-15 17:56:56 +0200 |
---|---|---|
committer | Ola Bini <ola@olabini.se> | 2015-09-15 17:56:56 +0200 |
commit | b4950c9334d476049b8b273ad1d8cb15a86f6074 (patch) | |
tree | 8297da8a35881f263c945c32e2b5545bfe64f842 /src/test/test.c | |
parent | a444b11323799536b4cd7902e29f711b0806293a (diff) | |
download | tor-b4950c9334d476049b8b273ad1d8cb15a86f6074.tar.gz tor-b4950c9334d476049b8b273ad1d8cb15a86f6074.zip |
Add tests for procmon. These currently fail. Investigation should happen before submitting
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test.c b/src/test/test.c index e10e260266..23e41b7fba 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1145,6 +1145,7 @@ extern struct testcase_t nodelist_tests[]; extern struct testcase_t oom_tests[]; extern struct testcase_t options_tests[]; extern struct testcase_t policy_tests[]; +extern struct testcase_t procmon_tests[]; extern struct testcase_t pt_tests[]; extern struct testcase_t relay_tests[]; extern struct testcase_t relaycell_tests[]; @@ -1192,6 +1193,7 @@ struct testgroup_t testgroups[] = { { "oom/", oom_tests }, { "options/", options_tests }, { "policy/" , policy_tests }, + { "procmon/", procmon_tests }, { "pt/", pt_tests }, { "relay/" , relay_tests }, { "relaycell/", relaycell_tests }, @@ -1208,4 +1210,3 @@ struct testgroup_t testgroups[] = { { "dns/", dns_tests }, END_OF_GROUPS }; - |