diff options
author | Andrea Shepard <andrea@torproject.org> | 2013-12-13 06:34:46 -0800 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2014-09-30 22:54:02 -0700 |
commit | 6d886787e3e112693dc8ac9cda021c93eaefee8b (patch) | |
tree | fc6570ba803a892f5ae13bcee357102887bc96ea /src/test/test.c | |
parent | 85ee07085281a1fa47d0b44b0addbb54fcfa6061 (diff) | |
download | tor-6d886787e3e112693dc8ac9cda021c93eaefee8b.tar.gz tor-6d886787e3e112693dc8ac9cda021c93eaefee8b.zip |
Unit tests for channel_get_cell_queue_entry_size() and channel_write_*() functions
Diffstat (limited to 'src/test/test.c')
-rw-r--r-- | src/test/test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test.c b/src/test/test.c index cfbe203d2e..4d4f6f23a4 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1308,6 +1308,8 @@ extern struct testcase_t oom_tests[]; extern struct testcase_t policy_tests[]; extern struct testcase_t status_tests[]; extern struct testcase_t routerset_tests[]; +extern struct testcase_t router_tests[]; +extern struct testcase_t channel_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, @@ -1340,6 +1342,7 @@ static struct testgroup_t testgroups[] = { { "policy/" , policy_tests }, { "status/" , status_tests }, { "routerset/" , routerset_tests }, + { "channel/", channel_tests }, END_OF_GROUPS }; |