2012-08-03 01:05:18 +02:00
|
|
|
TESTS+= src/test/test
|
2012-08-02 15:31:43 +02:00
|
|
|
|
|
|
|
noinst_PROGRAMS+= src/test/test src/test/test-child src/test/bench
|
|
|
|
|
|
|
|
src_test_AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \
|
|
|
|
-DLOCALSTATEDIR="\"$(localstatedir)\"" \
|
|
|
|
-DBINDIR="\"$(bindir)\"" \
|
2012-10-11 23:19:37 +02:00
|
|
|
-I"$(top_srcdir)/src/or" -I"$(top_srcdir)/src/ext"
|
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 \
|
2012-10-22 17:28:37 +02:00
|
|
|
src/test/test_cell_formats.c \
|
2012-08-02 15:31:43 +02:00
|
|
|
src/test/test_containers.c \
|
|
|
|
src/test/test_crypto.c \
|
|
|
|
src/test/test_data.c \
|
|
|
|
src/test/test_dir.c \
|
|
|
|
src/test/test_introduce.c \
|
|
|
|
src/test/test_microdesc.c \
|
|
|
|
src/test/test_pt.c \
|
|
|
|
src/test/test_replay.c \
|
|
|
|
src/test/test_util.c \
|
|
|
|
src/test/test_config.c \
|
2012-10-11 23:19:37 +02:00
|
|
|
src/ext/tinytest.c
|
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_bench_CPPFLAGS= $(src_test_AM_CPPFLAGS)
|
|
|
|
|
|
|
|
src_test_test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \
|
|
|
|
@TOR_LDFLAGS_libevent@
|
2012-12-06 18:07:58 +01:00
|
|
|
src_test_test_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@ \
|
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
|
|
|
|
|
|
|
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@ \
|
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
|
|
|
|
|
|
|
noinst_HEADERS+= \
|
|
|
|
src/test/test.h
|
|
|
|
|
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@ \
|
|
|
|
@TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@
|
|
|
|
src_test_test_ntor_cl_AM_CPPFLAGS = \
|
|
|
|
-I"$(top_srcdir)/src/or"
|
|
|
|
|
|
|
|
endif
|
|
|
|
|