diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-22 11:28:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-11-14 23:16:21 -0500 |
commit | 462ebb270a10f02573b1847649db45b94c0e0fc3 (patch) | |
tree | 9382649da248ab714e64ce11c6829289e2ce5408 /src/test/test.c | |
parent | ca8843df0adb088b028b5599cd3062ea608f716b (diff) | |
download | tor-462ebb270a10f02573b1847649db45b94c0e0fc3.tar.gz tor-462ebb270a10f02573b1847649db45b94c0e0fc3.zip |
Refactor begin cell parsing into its own function, with tests.
Add 'flags' argument to begin cells, per proposal 208.
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 1eaa65c783..fc3c36e300 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1983,6 +1983,7 @@ extern struct testcase_t pt_tests[]; extern struct testcase_t config_tests[]; extern struct testcase_t introduce_tests[]; extern struct testcase_t replaycache_tests[]; +extern struct testcase_t cell_format_tests[]; static struct testgroup_t testgroups[] = { { "", test_array }, @@ -1991,6 +1992,7 @@ static struct testgroup_t testgroups[] = { { "crypto/", crypto_tests }, { "container/", container_tests }, { "util/", util_tests }, + { "cellfmt/", cell_format_tests }, { "dir/", dir_tests }, { "dir/md/", microdesc_tests }, { "pt/", pt_tests }, |