diff options
author | Qingping Hou <dave2008713@gmail.com> | 2014-01-26 00:18:55 -0500 |
---|---|---|
committer | Qingping Hou <dave2008713@gmail.com> | 2014-01-29 22:47:05 -0500 |
commit | ebd99314cff907433eca835926a325c019f4b6c0 (patch) | |
tree | dfeae399f862f4d8a8cc95a6df7d0b7ba17d43fc /src/test/test.c | |
parent | 0b0d4b4ebcfe3711a8bcd27cbbdc05cd02530f38 (diff) | |
download | tor-ebd99314cff907433eca835926a325c019f4b6c0.tar.gz tor-ebd99314cff907433eca835926a325c019f4b6c0.zip |
add test case for node_describe_by_id
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 3f8e9c64f1..8b2a5ad67d 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1626,6 +1626,7 @@ extern struct testcase_t controller_event_tests[]; extern struct testcase_t logging_tests[]; extern struct testcase_t backtrace_tests[]; extern struct testcase_t hs_tests[]; +extern struct testcase_t router_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, @@ -1650,6 +1651,7 @@ static struct testgroup_t testgroups[] = { { "extorport/", extorport_tests }, { "control/", controller_event_tests }, { "hs/", hs_tests }, + { "router/", router_tests }, END_OF_GROUPS }; |