diff options
author | rl1987 <nobody@nowhere.int> | 2013-08-23 21:06:42 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-08 13:50:02 -0400 |
commit | 51e13cd1ad5f7c130521e2a964ea462f35d1880e (patch) | |
tree | c7f5cbaf837e96d0bb60f351e67aa724f0f9cdfe /src/test/test.c | |
parent | 77e4a01f12cc127022df16922fbe526bfc5824d9 (diff) | |
download | tor-51e13cd1ad5f7c130521e2a964ea462f35d1880e.tar.gz tor-51e13cd1ad5f7c130521e2a964ea462f35d1880e.zip |
Making entire exit policy available to Tor controller.
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 f89556356a..d21beb9bbd 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1572,6 +1572,7 @@ extern struct testcase_t cell_queue_tests[]; extern struct testcase_t options_tests[]; extern struct testcase_t socks_tests[]; extern struct testcase_t extorport_tests[]; +extern struct testcase_t exit_policy_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, @@ -1593,6 +1594,7 @@ static struct testgroup_t testgroups[] = { { "circuitmux/", circuitmux_tests }, { "options/", options_tests }, { "extorport/", extorport_tests }, + { "policy/" , exit_policy_tests }, END_OF_GROUPS }; |