2011-04-09 23:50:33 +00:00
|
|
|
import testing ;
|
2013-09-03 01:19:42 +00:00
|
|
|
import feature : feature ;
|
2011-04-09 23:50:33 +00:00
|
|
|
|
2005-08-11 11:06:52 +00:00
|
|
|
use-project /torrent : .. ;
|
|
|
|
|
2009-04-10 08:40:13 +00:00
|
|
|
exe test_natpmp : test_natpmp.cpp /torrent//torrent
|
2009-11-29 07:06:38 +00:00
|
|
|
: <threading>multi <debug-iterators>on <invariant-checks>full ;
|
2009-04-10 08:40:13 +00:00
|
|
|
|
2013-07-20 01:02:15 +00:00
|
|
|
exe enum_if : enum_if.cpp /torrent//torrent
|
|
|
|
: <threading>multi <debug-iterators>on <invariant-checks>full ;
|
|
|
|
|
2009-05-21 19:20:24 +00:00
|
|
|
explicit test_natpmp ;
|
2013-07-20 01:02:15 +00:00
|
|
|
explicit enum_if ;
|
2009-05-21 19:20:24 +00:00
|
|
|
|
2013-08-22 08:12:35 +00:00
|
|
|
ED25519_SOURCES =
|
|
|
|
add_scalar
|
|
|
|
fe
|
|
|
|
ge
|
|
|
|
key_exchange
|
|
|
|
keypair
|
|
|
|
sc
|
|
|
|
seed
|
|
|
|
sha512
|
|
|
|
sign
|
|
|
|
verify
|
|
|
|
;
|
|
|
|
|
2013-09-20 14:14:29 +00:00
|
|
|
rule link_test ( properties * )
|
|
|
|
{
|
|
|
|
local result ;
|
|
|
|
if <link>shared in $(properties)
|
|
|
|
{
|
|
|
|
result +=
|
|
|
|
<library>libtorrent_test/<link>shared ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result +=
|
|
|
|
<library>libtorrent_test/<link>static ;
|
|
|
|
}
|
2013-09-25 01:45:23 +00:00
|
|
|
return $(result) ;
|
2013-09-20 14:14:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rule link_libtorrent ( properties * )
|
|
|
|
{
|
|
|
|
local result ;
|
|
|
|
if <link>shared in $(properties)
|
|
|
|
{
|
|
|
|
result +=
|
|
|
|
<library>/torrent//torrent/<link>shared/<boost-link>shared/<export-extra>on ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result +=
|
|
|
|
<library>/torrent//torrent/<link>static/<boost-link>static/<export-extra>on ;
|
|
|
|
}
|
2013-09-25 01:45:23 +00:00
|
|
|
return $(result) ;
|
2013-09-20 14:14:29 +00:00
|
|
|
}
|
|
|
|
|
2013-06-21 01:06:40 +00:00
|
|
|
lib libtorrent_test
|
|
|
|
: # sources
|
|
|
|
setup_transfer.cpp
|
|
|
|
dht_server.cpp
|
|
|
|
peer_server.cpp
|
2013-08-22 08:12:35 +00:00
|
|
|
../ed25519/src/$(ED25519_SOURCES).c
|
2013-09-29 22:50:06 +00:00
|
|
|
web_seed_suite.cpp
|
2013-06-23 17:36:00 +00:00
|
|
|
|
2013-06-21 01:06:40 +00:00
|
|
|
: # requirements
|
2013-06-23 17:36:00 +00:00
|
|
|
# this is used to determine whether
|
|
|
|
# symbols are exported or imported
|
|
|
|
<link>shared:<define>TORRENT_BUILDING_TEST_SHARED
|
2013-08-22 08:12:35 +00:00
|
|
|
<link>shared:<define>ED25519_BUILD_DLL
|
|
|
|
<include>../ed25519/src
|
2013-08-28 06:39:39 +00:00
|
|
|
<target-os>windows:<library>advapi32
|
2013-09-20 14:14:29 +00:00
|
|
|
<conditional>@link_libtorrent
|
2013-06-23 17:36:00 +00:00
|
|
|
|
|
|
|
: # default build
|
|
|
|
<link>shared
|
2013-09-18 08:42:30 +00:00
|
|
|
|
|
|
|
: # user-requirements
|
|
|
|
<link>shared:<define>TORRENT_LINK_TEST_SHARED
|
2013-06-21 01:06:40 +00:00
|
|
|
;
|
|
|
|
|
2013-08-28 06:39:39 +00:00
|
|
|
lib advapi32 : : <name>Advapi32 ;
|
|
|
|
|
2007-07-06 20:17:36 +00:00
|
|
|
project
|
|
|
|
: requirements
|
2009-04-10 08:40:13 +00:00
|
|
|
<source>main.cpp
|
2013-09-20 14:14:29 +00:00
|
|
|
<conditional>@link_test
|
|
|
|
<conditional>@link_libtorrent
|
2008-03-23 05:33:47 +00:00
|
|
|
: default-build
|
|
|
|
<threading>multi
|
2008-07-30 06:40:06 +00:00
|
|
|
<invariant-checks>full
|
2008-09-15 15:09:20 +00:00
|
|
|
<debug-iterators>on
|
2013-09-20 14:14:29 +00:00
|
|
|
<link>shared
|
2005-08-14 22:04:58 +00:00
|
|
|
;
|
2005-08-11 11:06:52 +00:00
|
|
|
|
2013-09-03 01:19:42 +00:00
|
|
|
feature launcher : none valgrind : composite ;
|
2013-10-06 20:01:55 +00:00
|
|
|
feature.compose <launcher>valgrind : <testing.launcher>"valgrind --tool=memcheck -v --num-callers=20 --read-var-info=yes --track-origins=yes --error-exitcode=222" <valgrind>on ;
|
2013-09-03 01:19:42 +00:00
|
|
|
|
2009-04-10 08:40:13 +00:00
|
|
|
test-suite libtorrent :
|
2013-11-18 00:56:02 +00:00
|
|
|
[ run test_torrent_info.cpp ]
|
2013-11-01 16:05:48 +00:00
|
|
|
[ run test_time.cpp ]
|
2013-06-08 23:37:11 +00:00
|
|
|
[ run test_file_storage.cpp ]
|
2013-10-10 17:00:32 +00:00
|
|
|
[ run test_priority.cpp ]
|
2012-12-31 06:54:54 +00:00
|
|
|
[ run test_peer_priority.cpp ]
|
2012-06-29 23:10:28 +00:00
|
|
|
[ run test_file.cpp ]
|
2013-06-12 07:57:13 +00:00
|
|
|
[ run test_privacy.cpp ]
|
2010-08-26 17:00:24 +00:00
|
|
|
[ run test_threads.cpp ]
|
2012-02-20 07:51:36 +00:00
|
|
|
[ run test_rss.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_bandwidth_limiter.cpp ]
|
2005-09-14 19:33:16 +00:00
|
|
|
[ run test_buffer.cpp ]
|
2005-08-12 12:40:58 +00:00
|
|
|
[ run test_piece_picker.cpp ]
|
2005-08-11 11:06:52 +00:00
|
|
|
[ run test_bencoding.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_fast_extension.cpp ]
|
2007-05-22 20:44:18 +00:00
|
|
|
[ run test_primitives.cpp ]
|
2013-09-01 01:10:50 +00:00
|
|
|
[ run test_http_parser.cpp ]
|
2013-09-01 06:52:50 +00:00
|
|
|
[ run test_packet_buffer.cpp ]
|
2013-09-01 01:10:50 +00:00
|
|
|
[ run test_string.cpp ]
|
2013-09-01 06:52:50 +00:00
|
|
|
[ run test_magnet.cpp ]
|
2013-09-01 01:10:50 +00:00
|
|
|
[ run test_xml.cpp ]
|
2005-08-11 11:06:52 +00:00
|
|
|
[ run test_ip_filter.cpp ]
|
|
|
|
[ run test_hasher.cpp ]
|
2009-09-27 03:38:41 +00:00
|
|
|
[ run test_dht.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_storage.cpp ]
|
2013-01-31 03:39:14 +00:00
|
|
|
[ run test_torrent_parse.cpp ]
|
2013-05-31 16:33:06 +00:00
|
|
|
[ run test_session.cpp ]
|
2009-06-29 08:09:32 +00:00
|
|
|
[ run test_upnp.cpp ]
|
2013-11-24 01:32:51 +00:00
|
|
|
[ run test_read_piece.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
|
2013-07-28 15:06:28 +00:00
|
|
|
[ run test_ssl.cpp ]
|
2011-09-17 21:15:42 +00:00
|
|
|
[ run test_tracker.cpp ]
|
2013-01-06 04:53:26 +00:00
|
|
|
[ run test_checking.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_web_seed.cpp ]
|
2013-09-29 22:50:06 +00:00
|
|
|
[ run test_web_seed_socks4.cpp ]
|
|
|
|
[ run test_web_seed_socks5.cpp ]
|
|
|
|
[ run test_web_seed_socks5_pw.cpp ]
|
|
|
|
[ run test_web_seed_http.cpp ]
|
|
|
|
[ run test_web_seed_http_pw.cpp ]
|
2013-11-03 18:27:24 +00:00
|
|
|
[ run test_web_seed_chunked.cpp ]
|
|
|
|
[ run test_web_seed_ban.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_bdecode_performance.cpp ]
|
|
|
|
[ run test_pe_crypto.cpp ]
|
|
|
|
|
2010-11-29 01:33:05 +00:00
|
|
|
[ run test_utp.cpp ]
|
2009-04-26 00:32:19 +00:00
|
|
|
[ run test_auto_unchoke.cpp ]
|
|
|
|
[ run test_http_connection.cpp ]
|
|
|
|
[ run test_torrent.cpp ]
|
|
|
|
[ run test_transfer.cpp ]
|
|
|
|
# [ run test_entry.cpp ]
|
2006-04-25 21:04:48 +00:00
|
|
|
[ run test_metadata_extension.cpp ]
|
2008-11-27 20:51:59 +00:00
|
|
|
[ run test_trackers_extension.cpp ]
|
2007-06-08 23:02:31 +00:00
|
|
|
[ run test_swarm.cpp ]
|
2007-10-01 02:09:12 +00:00
|
|
|
[ run test_lsd.cpp ]
|
2007-12-30 09:36:01 +00:00
|
|
|
[ run test_pex.cpp ]
|
2005-08-11 11:06:52 +00:00
|
|
|
;
|
|
|
|
|