forked from premiere/premiere-libtorrent
autotools: fix `make check` running
Signed-off-by: Luca Bruno <lucab@debian.org>
This commit is contained in:
parent
6feab20733
commit
15ef71303a
|
@ -1,7 +1,9 @@
|
||||||
AUTOMAKE_OPTIONS = subdir-objects
|
AUTOMAKE_OPTIONS = subdir-objects
|
||||||
|
|
||||||
|
benchmark_programs = \
|
||||||
|
bdecode_benchmark
|
||||||
|
|
||||||
test_programs = \
|
test_programs = \
|
||||||
bdecode_benchmark \
|
|
||||||
test_primitives \
|
test_primitives \
|
||||||
test_recheck \
|
test_recheck \
|
||||||
test_stat_cache \
|
test_stat_cache \
|
||||||
|
@ -35,11 +37,11 @@ test_programs = \
|
||||||
test_linked_list
|
test_linked_list
|
||||||
|
|
||||||
if ENABLE_TESTS
|
if ENABLE_TESTS
|
||||||
check_PROGRAMS = $(test_programs)
|
check_PROGRAMS = $(test_programs) $(benchmark_programs)
|
||||||
noinst_LTLIBRARIES = libtest.la
|
noinst_LTLIBRARIES = libtest.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
TESTS = $(check_PROGRAMS)
|
TESTS = $(test_programs)
|
||||||
|
|
||||||
EXTRA_DIST = Jamfile \
|
EXTRA_DIST = Jamfile \
|
||||||
test_torrents/base.torrent \
|
test_torrents/base.torrent \
|
||||||
|
@ -95,7 +97,7 @@ EXTRA_DIST = Jamfile \
|
||||||
zeroes.gz \
|
zeroes.gz \
|
||||||
utf8_test.txt
|
utf8_test.txt
|
||||||
|
|
||||||
EXTRA_PROGRAMS = $(test_programs)
|
EXTRA_PROGRAMS = $(test_programs) $(benchmark_programs)
|
||||||
|
|
||||||
noinst_HEADERS = test.hpp setup_transfer.hpp dht_server.hpp \
|
noinst_HEADERS = test.hpp setup_transfer.hpp dht_server.hpp \
|
||||||
peer_server.hpp udp_tracker.hpp web_seed_suite.hpp swarm_suite.hpp \
|
peer_server.hpp udp_tracker.hpp web_seed_suite.hpp swarm_suite.hpp \
|
||||||
|
@ -167,6 +169,7 @@ test_privacy_SOURCES = test_privacy.cpp
|
||||||
test_priority_SOURCES = test_priority.cpp
|
test_priority_SOURCES = test_priority.cpp
|
||||||
test_auto_unchoke_SOURCES = test_auto_unchoke.cpp
|
test_auto_unchoke_SOURCES = test_auto_unchoke.cpp
|
||||||
test_checking_SOURCES = test_checking.cpp
|
test_checking_SOURCES = test_checking.cpp
|
||||||
|
test_enum_net_SOURCES = test_enum_net.cpp
|
||||||
test_fast_extension_SOURCES = test_fast_extension.cpp
|
test_fast_extension_SOURCES = test_fast_extension.cpp
|
||||||
test_http_connection_SOURCES = test_http_connection.cpp
|
test_http_connection_SOURCES = test_http_connection.cpp
|
||||||
test_lsd_SOURCES = test_lsd.cpp
|
test_lsd_SOURCES = test_lsd.cpp
|
||||||
|
|
Loading…
Reference in New Issue