mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-23 20:03:31 +01:00
Initialize libevent before periodic events
The initialization of libevent interferes with other tests so we also fork the circuit_timeout test.
This commit is contained in:
parent
a09e7cd31a
commit
c59c622d85
@ -319,6 +319,11 @@ 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);
|
||||
@ -1114,7 +1119,7 @@ static struct testcase_t test_array[] = {
|
||||
{ "bad_onion_handshake", test_bad_onion_handshake, 0, NULL, NULL },
|
||||
ENT(onion_queues),
|
||||
{ "ntor_handshake", test_ntor_handshake, 0, NULL, NULL },
|
||||
ENT(circuit_timeout),
|
||||
FORK(circuit_timeout),
|
||||
FORK(rend_fns),
|
||||
ENT(geoip),
|
||||
FORK(geoip_with_pt),
|
||||
|
Loading…
Reference in New Issue
Block a user