aboutsummaryrefslogtreecommitdiff
path: root/src/test/test-timers.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-10-03 11:20:59 -0400
committerNick Mathewson <nickm@torproject.org>2018-04-05 12:36:27 -0400
commitb3586629c9ce41393898b381159ba331906f8fc3 (patch)
treedf515c0311ce74f29890b77311403905aa406f55 /src/test/test-timers.c
parent39cb04335f9fd5c3268c808bac549f531fe389a3 (diff)
downloadtor-b3586629c9ce41393898b381159ba331906f8fc3.tar.gz
tor-b3586629c9ce41393898b381159ba331906f8fc3.zip
Wrap the function we use to run the event loop.
Doing this lets us remove the event2/event.h header from a few more modules, particularly in the tests. Part of work on 23750.
Diffstat (limited to 'src/test/test-timers.c')
-rw-r--r--src/test/test-timers.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/test-timers.c b/src/test/test-timers.c
index 1b4466ecc2..5efd99cacf 100644
--- a/src/test/test-timers.c
+++ b/src/test/test-timers.c
@@ -7,8 +7,6 @@
#include <stdio.h>
#include <string.h>
-#include <event2/event.h>
-
#include "compat.h"
#include "compat_libevent.h"
#include "crypto.h"
@@ -90,7 +88,7 @@ main(int argc, char **argv)
--n_active_timers;
}
- event_base_loop(tor_libevent_get_base(), 0);
+ tor_libevent_run_event_loop(tor_libevent_get_base(), 0);
int64_t total_difference = 0;
uint64_t total_square_difference = 0;