diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-06-07 20:03:26 -0400 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-06-14 13:28:10 +0300 |
commit | 990b434c4f4aa5e9c410bb083c1b98cead92bb59 (patch) | |
tree | 6f1f23bed7c280d075d709c6b98455b47f72360b /src/test | |
parent | ecc5feff386890ad34378c70a20cbbdd0d338225 (diff) | |
download | tor-990b434c4f4aa5e9c410bb083c1b98cead92bb59.tar.gz tor-990b434c4f4aa5e9c410bb083c1b98cead92bb59.zip |
Make evloop into a subsystem.
Note that the event base object is _not_ created from the initialize
function, since it is configuration-dependent. This will wait until
configuration is integrated into subsystems.
Closes ticket 30806.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_channelpadding.c | 7 | ||||
-rw-r--r-- | src/test/test_compat_libevent.c | 2 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/test/test_channelpadding.c b/src/test/test_channelpadding.c index 5d012e462b..885246628e 100644 --- a/src/test/test_channelpadding.c +++ b/src/test/test_channelpadding.c @@ -289,8 +289,6 @@ test_channelpadding_timers(void *arg) channel_t *chans[CHANNELS_TO_TEST]; (void)arg; - tor_libevent_postfork(); - if (!connection_array) connection_array = smartlist_new(); @@ -393,7 +391,6 @@ test_channelpadding_killonehop(void *arg) channelpadding_decision_t decision; int64_t new_time; (void)arg; - tor_libevent_postfork(); routerstatus_t *relay = tor_malloc_zero(sizeof(routerstatus_t)); monotime_init(); @@ -502,8 +499,6 @@ test_channelpadding_consensus(void *arg) int64_t new_time; (void)arg; - tor_libevent_postfork(); - /* * Params tested: * nf_pad_before_usage @@ -898,8 +893,6 @@ test_channelpadding_decide_to_pad_channel(void *arg) connection_array = smartlist_new(); (void)arg; - tor_libevent_postfork(); - monotime_init(); monotime_enable_test_mocking(); monotime_set_mock_time_nsec(1); diff --git a/src/test/test_compat_libevent.c b/src/test/test_compat_libevent.c index 5d625483da..ecd97e3474 100644 --- a/src/test/test_compat_libevent.c +++ b/src/test/test_compat_libevent.c @@ -151,8 +151,6 @@ test_compat_libevent_postloop_events(void *arg) mainloop_event_t *a = NULL, *b = NULL; periodic_timer_t *timed = NULL; - tor_libevent_postfork(); - /* If postloop events don't work, then these events will activate one * another ad infinitum and, and the periodic event will never occur. */ b = mainloop_event_postloop_new(activate_event_cb, &a); |