diff options
author | Arlo Breault <arlolra@gmail.com> | 2014-09-23 12:22:36 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-23 12:23:18 -0400 |
commit | bb137e23c1c30f7e9f469d4924bbce2bb9b2d2ed (patch) | |
tree | 44933bf6beeb24edb6396c104ae641711262f936 /src/test/test.c | |
parent | 5ed5ac185bf6f30438af1638f30e04418ed27aff (diff) | |
download | tor-bb137e23c1c30f7e9f469d4924bbce2bb9b2d2ed.tar.gz tor-bb137e23c1c30f7e9f469d4924bbce2bb9b2d2ed.zip |
Unit tests for router download functions.
Also, sort test suites alphabetically.
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/test/test.c b/src/test/test.c index 0ba5da3672..8b53754d5d 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1637,33 +1637,35 @@ extern struct testcase_t hs_tests[]; extern struct testcase_t nodelist_tests[]; extern struct testcase_t routerkeys_tests[]; extern struct testcase_t oom_tests[]; +extern struct testcase_t routerlist_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, - { "buffer/", buffer_tests }, - { "socks/", socks_tests }, { "addr/", addr_tests }, - { "crypto/", crypto_tests }, - { "container/", container_tests }, - { "util/", util_tests }, - { "util/logging/", logging_tests }, + { "buffer/", buffer_tests }, { "cellfmt/", cell_format_tests }, { "cellqueue/", cell_queue_tests }, - { "dir/", dir_tests }, - { "dir/md/", microdesc_tests }, - { "pt/", pt_tests }, - { "config/", config_tests }, - { "replaycache/", replaycache_tests }, - { "introduce/", introduce_tests }, { "circuitlist/", circuitlist_tests }, { "circuitmux/", circuitmux_tests }, - { "options/", options_tests }, - { "extorport/", extorport_tests }, + { "config/", config_tests }, + { "container/", container_tests }, { "control/", controller_event_tests }, + { "crypto/", crypto_tests }, + { "dir/", dir_tests }, + { "dir/md/", microdesc_tests }, + { "extorport/", extorport_tests }, { "hs/", hs_tests }, + { "introduce/", introduce_tests }, { "nodelist/", nodelist_tests }, - { "routerkeys/", routerkeys_tests }, { "oom/", oom_tests }, + { "options/", options_tests }, + { "pt/", pt_tests }, + { "routerkeys/", routerkeys_tests }, + { "routerlist/", routerlist_tests }, + { "replaycache/", replaycache_tests }, + { "socks/", socks_tests }, + { "util/", util_tests }, + { "util/logging/", logging_tests }, END_OF_GROUPS }; |