diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-02-04 12:30:48 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-02-04 12:30:48 -0500 |
commit | 1bac468882fd732460d8a25735131d632f977bfe (patch) | |
tree | 5d0abc611d1a95ce06b4146237a96df469c7811a /src/test/testing_common.c | |
parent | 5da517e6897c4b997bb165dfd11e95f8f9c2bbbe (diff) | |
download | tor-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/testing_common.c')
-rw-r--r-- | src/test/testing_common.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/testing_common.c b/src/test/testing_common.c index e20e9e6095..9c7fca05a5 100644 --- a/src/test/testing_common.c +++ b/src/test/testing_common.c @@ -238,6 +238,11 @@ main(int c, const char **v) update_approx_time(time(NULL)); options = options_new(); tor_threads_init(); + + struct tor_libevent_cfg cfg; + memset(&cfg, 0, sizeof(cfg)); + tor_libevent_initialize(&cfg); + control_initialize_event_queue(); init_logging(1); configure_backtrace_handler(get_version()); |