diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-07-18 11:02:36 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 11:23:45 -0400 |
commit | ae641971955f5ff4969a57cd7a011f41eb303bb4 (patch) | |
tree | a763818ebb00e415d5231c20fded5e52c48016a6 /src/test/test.c | |
parent | 1047e7dcb05cbf4c98276d00c157cf0506b451d5 (diff) | |
download | tor-ae641971955f5ff4969a57cd7a011f41eb303bb4.tar.gz tor-ae641971955f5ff4969a57cd7a011f41eb303bb4.zip |
Unit tests for cell queues.
This removes some INLINE markers from functions that probably didn't
need them.
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 d7d4c6c062..d1c5b176b6 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -2133,6 +2133,7 @@ extern struct testcase_t introduce_tests[]; extern struct testcase_t replaycache_tests[]; extern struct testcase_t cell_format_tests[]; extern struct testcase_t circuitlist_tests[]; +extern struct testcase_t cell_queue_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, @@ -2142,6 +2143,7 @@ static struct testgroup_t testgroups[] = { { "container/", container_tests }, { "util/", util_tests }, { "cellfmt/", cell_format_tests }, + { "cellqueue/", cell_queue_tests }, { "dir/", dir_tests }, { "dir/md/", microdesc_tests }, { "pt/", pt_tests }, |