aboutsummaryrefslogtreecommitdiff
path: root/src/test/test.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-02-04 12:30:48 -0500
committerNick Mathewson <nickm@torproject.org>2016-02-04 12:30:48 -0500
commit1bac468882fd732460d8a25735131d632f977bfe (patch)
tree5d0abc611d1a95ce06b4146237a96df469c7811a /src/test/test.c
parent5da517e6897c4b997bb165dfd11e95f8f9c2bbbe (diff)
downloadtor-1bac468882fd732460d8a25735131d632f977bfe.tar.gz
tor-1bac468882fd732460d8a25735131d632f977bfe.zip
Fix two problems in the 0.2.8.x unit tests
1. We were sometimes using libevent uninitialized, which is Not Allowed. 2. The malformed-PTR dns test was supposed to get a -1 output... but the test was wrong, since it forgot that in-addr.arpa addresses are in reverse order. Bugs not in any released tor.
Diffstat (limited to 'src/test/test.c')
-rw-r--r--src/test/test.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/test.c b/src/test/test.c
index f12ae21ff0..d671ac896e 100644
--- a/src/test/test.c
+++ b/src/test/test.c
@@ -319,11 +319,7 @@ test_circuit_timeout(void *arg)
int i, runs;
double close_ms;
(void)arg;
- tor_libevent_cfg cfg;
- memset(&cfg, 0, sizeof(cfg));
-
- tor_libevent_initialize(&cfg);
initialize_periodic_events();
circuit_build_times_init(&initial);