diff --git a/Makefile.am b/Makefile.am index dfddbc0d4..3a9f2cc3f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -71,7 +71,6 @@ check: test && test/test_piece_picker \ && test/test_storage \ && test/test_buffer \ - && test/test_allocate_resources \ && echo && echo && echo " **** all tests passed ****" && echo && echo deb: diff --git a/src/Makefile.am b/src/Makefile.am index 0cee29b46..bc4fb7353 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -68,7 +68,6 @@ $(top_srcdir)/include/libtorrent/peer_request.hpp \ $(top_srcdir)/include/libtorrent/piece_block_progress.hpp \ $(top_srcdir)/include/libtorrent/piece_picker.hpp \ $(top_srcdir)/include/libtorrent/policy.hpp \ -$(top_srcdir)/include/libtorrent/resource_request.hpp \ $(top_srcdir)/include/libtorrent/session.hpp \ $(top_srcdir)/include/libtorrent/size_type.hpp \ $(top_srcdir)/include/libtorrent/socket.hpp \ diff --git a/test/Makefile.am b/test/Makefile.am index fc90dd6e0..28bb019a4 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,6 +1,5 @@ noinst_PROGRAMS = test_hasher test_bencoding test_ip_filter test_piece_picker \ -test_storage test_metadata_extension test_buffer test_allocate_resources \ - test_swarm test_pe_crypto test_primitives \ +test_storage test_metadata_extension test_buffer test_swarm test_pe_crypto test_primitives \ test_bandwidth_limiter EXTRA_DIST = Jamfile @@ -22,9 +21,6 @@ test_storage_LDADD = $(top_builddir)/src/libtorrent.la test_buffer_SOURCES = main.cpp test_buffer.cpp test_buffer_LDADD = $(top_builddir)/src/libtorrent.la -test_allocate_resources_SOURCES = main.cpp test_allocate_resources.cpp -test_allocate_resources_LDADD = $(top_builddir)/src/libtorrent.la - test_metadata_extension_SOURCES = main.cpp setup_transfer.cpp test_metadata_extension.cpp test_metadata_extension_LDADD = $(top_builddir)/src/libtorrent.la