2013-10-11 19:05:58 +02:00
|
|
|
TESTS += src/test/test
|
2012-08-02 15:31:43 +02:00
|
|
|
|
2013-06-06 20:56:05 +02:00
|
|
|
noinst_PROGRAMS+= src/test/bench
|
|
|
|
if UNITTESTS_ENABLED
|
|
|
|
noinst_PROGRAMS+= src/test/test src/test/test-child
|
|
|
|
endif
|
2012-08-02 15:31:43 +02:00
|
|
|
|
|
|
|
src_test_AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \
|
|
|
|
-DLOCALSTATEDIR="\"$(localstatedir)\"" \
|
|
|
|
-DBINDIR="\"$(bindir)\"" \
|
2013-06-06 20:56:05 +02:00
|
|
|
-I"$(top_srcdir)/src/or" -I"$(top_srcdir)/src/ext" \
|
|
|
|
-DTOR_UNIT_TESTS
|
2012-08-02 15:31:43 +02:00
|
|
|
|
|
|
|
# -L flags need to go in LDFLAGS. -l flags need to go in LDADD.
|
|
|
|
# This seems to matter nowhere but on Windows, but I assure you that it
|
|
|
|
# matters a lot there, and is quite hard to debug if you forget to do it.
|
|
|
|
|
|
|
|
src_test_test_SOURCES = \
|
|
|
|
src/test/test.c \
|
|
|
|
src/test/test_addr.c \
|
2013-07-17 23:31:27 +02:00
|
|
|
src/test/test_buffers.c \
|
2012-10-22 17:28:37 +02:00
|
|
|
src/test/test_cell_formats.c \
|
2013-07-10 21:07:32 +02:00
|
|
|
src/test/test_circuitlist.c \
|
2013-07-19 16:17:00 +02:00
|
|
|
src/test/test_circuitmux.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_containers.c \
|
2013-05-31 15:51:25 +02:00
|
|
|
src/test/test_controller_events.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_crypto.c \
|
2013-07-18 17:02:36 +02:00
|
|
|
src/test/test_cell_queue.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_data.c \
|
|
|
|
src/test/test_dir.c \
|
2014-06-24 20:22:52 +02:00
|
|
|
src/test/test_entrynodes.c \
|
2013-07-18 21:51:29 +02:00
|
|
|
src/test/test_extorport.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_introduce.c \
|
2013-07-29 19:30:49 +02:00
|
|
|
src/test/test_logging.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_microdesc.c \
|
2014-01-13 20:15:33 +01:00
|
|
|
src/test/test_oom.c \
|
2013-07-18 20:38:31 +02:00
|
|
|
src/test/test_options.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_pt.c \
|
2014-04-02 19:38:50 +02:00
|
|
|
src/test/test_relaycell.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_replay.c \
|
2014-02-26 19:42:21 +01:00
|
|
|
src/test/test_routerkeys.c \
|
2013-07-17 23:31:27 +02:00
|
|
|
src/test/test_socks.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_util.c \
|
|
|
|
src/test/test_config.c \
|
2013-12-18 07:40:05 +01:00
|
|
|
src/test/test_hs.c \
|
2014-02-05 01:54:09 +01:00
|
|
|
src/test/test_nodelist.c \
|
2014-04-08 19:55:02 +02:00
|
|
|
src/test/test_policy.c \
|
2014-04-15 14:20:34 +02:00
|
|
|
src/test/test_status.c \
|
2014-08-27 12:41:25 +02:00
|
|
|
src/test/test_routerset.c \
|
2012-10-11 23:19:37 +02:00
|
|
|
src/ext/tinytest.c
|
2012-08-02 15:31:43 +02:00
|
|
|
|
2013-07-09 18:37:11 +02:00
|
|
|
src_test_test_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
|
|
|
|
|
2012-08-02 15:31:43 +02:00
|
|
|
src_test_test_CPPFLAGS= $(src_test_AM_CPPFLAGS)
|
|
|
|
|
|
|
|
src_test_bench_SOURCES = \
|
|
|
|
src/test/bench.c
|
|
|
|
|
|
|
|
src_test_test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
|
|
|
|
@TOR_LDFLAGS_libevent@
|
2013-06-06 20:56:05 +02:00
|
|
|
src_test_test_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \
|
|
|
|
src/common/libor-crypto-testing.a $(LIBDONNA) \
|
|
|
|
src/common/libor-event-testing.a \
|
2012-08-02 15:31:43 +02:00
|
|
|
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \
|
2013-01-16 19:07:52 +01:00
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@
|
2012-08-02 15:31:43 +02:00
|
|
|
|
|
|
|
src_test_bench_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
|
|
|
|
@TOR_LDFLAGS_libevent@
|
2012-12-06 18:07:58 +01:00
|
|
|
src_test_bench_LDADD = src/or/libtor.a src/common/libor.a \
|
|
|
|
src/common/libor-crypto.a $(LIBDONNA) \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/common/libor-event.a \
|
|
|
|
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \
|
2013-01-16 19:07:52 +01:00
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@
|
2012-08-02 15:31:43 +02:00
|
|
|
|
|
|
|
noinst_HEADERS+= \
|
2014-07-16 22:37:00 +02:00
|
|
|
src/test/test.h \
|
|
|
|
src/test/test_descriptors.inc
|
2012-08-02 15:31:43 +02:00
|
|
|
|
2012-12-08 06:52:44 +01:00
|
|
|
if CURVE25519_ENABLED
|
|
|
|
noinst_PROGRAMS+= src/test/test-ntor-cl
|
|
|
|
src_test_test_ntor_cl_SOURCES = src/test/test_ntor_cl.c
|
|
|
|
src_test_test_ntor_cl_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@
|
|
|
|
src_test_test_ntor_cl_LDADD = src/or/libtor.a src/common/libor.a \
|
|
|
|
src/common/libor-crypto.a $(LIBDONNA) \
|
|
|
|
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ \
|
2013-01-16 19:07:52 +01:00
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@
|
2012-12-08 06:52:44 +01:00
|
|
|
src_test_test_ntor_cl_AM_CPPFLAGS = \
|
|
|
|
-I"$(top_srcdir)/src/or"
|
2013-10-11 19:21:42 +02:00
|
|
|
NTOR_TEST_DEPS=src/test/test-ntor-cl
|
|
|
|
else
|
|
|
|
NTOR_TEST_DEPS=
|
|
|
|
endif
|
2012-12-08 06:52:44 +01:00
|
|
|
|
2013-10-11 19:21:42 +02:00
|
|
|
if COVERAGE_ENABLED
|
|
|
|
CMDLINE_TEST_TOR = ./src/or/tor-cov
|
|
|
|
else
|
|
|
|
CMDLINE_TEST_TOR = ./src/or/tor
|
2012-12-08 06:52:44 +01:00
|
|
|
endif
|
|
|
|
|
2013-07-30 03:56:31 +02:00
|
|
|
noinst_PROGRAMS += src/test/test-bt-cl
|
|
|
|
src_test_test_bt_cl_SOURCES = src/test/test_bt_cl.c
|
|
|
|
src_test_test_bt_cl_LDADD = src/common/libor-testing.a \
|
|
|
|
@TOR_LIB_MATH@ \
|
|
|
|
@TOR_LIB_WS32@ @TOR_LIB_GDI@
|
|
|
|
src_test_test_bt_cl_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
|
|
|
|
src_test_test_bt_cl_CPPFLAGS= $(src_test_AM_CPPFLAGS)
|
|
|
|
|
2013-11-18 17:00:16 +01:00
|
|
|
|
2013-10-11 19:21:42 +02:00
|
|
|
check-local: $(NTOR_TEST_DEPS) $(CMDLINE_TEST_TOR)
|
2013-10-11 19:05:58 +02:00
|
|
|
if USEPYTHON
|
2013-10-11 19:42:27 +02:00
|
|
|
$(PYTHON) $(top_srcdir)/src/test/test_cmdline_args.py $(CMDLINE_TEST_TOR) "${top_srcdir}"
|
2013-10-11 19:21:42 +02:00
|
|
|
if CURVE25519_ENABLED
|
2013-10-11 19:42:27 +02:00
|
|
|
$(PYTHON) $(top_srcdir)/src/test/ntor_ref.py test-tor
|
|
|
|
$(PYTHON) $(top_srcdir)/src/test/ntor_ref.py self-test
|
2013-10-11 19:21:42 +02:00
|
|
|
endif
|
2013-11-18 17:00:16 +01:00
|
|
|
./src/test/test-bt-cl assert | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
|
|
|
./src/test/test-bt-cl crash | $(PYTHON) $(top_srcdir)/src/test/bt_test.py
|
2013-10-11 19:05:58 +02:00
|
|
|
endif
|
2014-02-04 17:07:43 +01:00
|
|
|
|
|
|
|
EXTRA_DIST += \
|
|
|
|
src/test/bt_test.py \
|
|
|
|
src/test/ntor_ref.py \
|
|
|
|
src/test/slownacl_curve25519.py \
|
|
|
|
src/test/test_cmdline_args.py
|