diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-07-19 10:17:00 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-19 10:17:00 -0400 |
commit | 34ad7642c8da894e459be09a3f051cb8f09cba31 (patch) | |
tree | 8c93a7798799213c1ea9e1d6b3d98f236defb584 /src/test/test.c | |
parent | 18845c550722d5fa7d68bdee6a5e2090acb89a6f (diff) | |
download | tor-34ad7642c8da894e459be09a3f051cb8f09cba31.tar.gz tor-34ad7642c8da894e459be09a3f051cb8f09cba31.zip |
Regression test for destroy cell queue
This exercises the code that crashed and caused #9296.
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 96401693cc..60fbfb132c 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 circuitmux_tests[]; extern struct testcase_t cell_queue_tests[]; extern struct testcase_t options_tests[]; @@ -2152,6 +2153,7 @@ static struct testgroup_t testgroups[] = { { "replaycache/", replaycache_tests }, { "introduce/", introduce_tests }, { "circuitlist/", circuitlist_tests }, + { "circuitmux/", circuitmux_tests }, { "options/", options_tests }, END_OF_GROUPS }; |