mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
2ba2f02181
successful/failed connections, successful/failed extends, and connection uptimes. It's still not done: more tests are needed, and not everything calls connection/circuit_mark_for_close properly. This skews the results. Also, there needs to be a 'testing' mode for non-OP ORs, where they periodically build circuits just to test whether extends work. svn:r1313
24 lines
637 B
Makefile
24 lines
637 B
Makefile
TESTS = test
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
bin_PROGRAMS = tor
|
|
|
|
tor_SOURCES = buffers.c circuit.c command.c connection.c \
|
|
connection_or.c config.c dirserv.c \
|
|
onion.c router.c routerlist.c directory.c dns.c connection_edge.c \
|
|
rephist.c cpuworker.c main.c tor_main.c
|
|
|
|
tor_LDADD = ../common/libor.a
|
|
|
|
test_SOURCES = buffers.c circuit.c command.c connection.c \
|
|
connection_or.c config.c dirserv.c \
|
|
onion.c router.c routerlist.c directory.c dns.c connection_edge.c \
|
|
rephist.c cpuworker.c main.c test.c
|
|
|
|
test_LDADD = ../common/libor.a
|
|
|
|
noinst_HEADERS = or.h tree.h
|
|
|
|
|