premiere-libtorrent/test/Jamfile

188 lines
4.1 KiB
Plaintext
Raw Normal View History

2011-04-10 01:50:33 +02:00
import testing ;
import feature : feature ;
2011-04-10 01:50:33 +02:00
2005-08-11 13:06:52 +02:00
use-project /torrent : .. ;
2009-04-10 10:40:13 +02:00
exe test_natpmp : test_natpmp.cpp /torrent//torrent
: <threading>multi <debug-iterators>on <invariant-checks>full ;
2009-04-10 10:40:13 +02:00
exe enum_if : enum_if.cpp /torrent//torrent
: <threading>multi <debug-iterators>on <invariant-checks>full ;
exe bdecode_benchmark : test_bdecode_performance.cpp /torrent//torrent
: <variant>release ;
explicit test_natpmp ;
explicit enum_if ;
explicit bdecode_benchmark ;
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 03:45:23 +02:00
return $(result) ;
}
rule link_libtorrent ( properties * )
{
local result ;
if <link>shared in $(properties)
{
result +=
<library>/torrent//torrent/<link>shared/<logging>on/<boost-link>shared/<export-extra>on ;
}
else
{
result +=
<library>/torrent//torrent/<link>static/<logging>on/<boost-link>static/<export-extra>on ;
}
2013-09-25 03:45:23 +02:00
return $(result) ;
}
2013-06-21 03:06:40 +02:00
lib libtorrent_test
: # sources
setup_transfer.cpp
dht_server.cpp
2014-02-23 02:32:55 +01:00
udp_tracker.cpp
2013-06-21 03:06:40 +02:00
peer_server.cpp
web_seed_suite.cpp
swarm_suite.cpp
test_utils.cpp
2013-06-21 03:06:40 +02:00
: # requirements
# this is used to determine whether
# symbols are exported or imported
<link>shared:<define>TORRENT_BUILDING_TEST_SHARED
2013-08-22 10:12:35 +02:00
<link>shared:<define>ED25519_BUILD_DLL
<include>../ed25519/src
<target-os>windows:<library>advapi32
<conditional>@link_libtorrent
: # default build
<link>shared
<logging>on
: # user-requirements
<link>shared:<define>TORRENT_LINK_TEST_SHARED
2015-04-12 08:39:16 +02:00
<logging>on
2013-06-21 03:06:40 +02:00
;
2014-04-27 18:54:10 +02:00
explicit libtorrent_test ;
lib advapi32 : : <name>Advapi32 ;
project
: requirements
2009-04-10 10:40:13 +02:00
<source>main.cpp
<source>test.cpp
<conditional>@link_test
<conditional>@link_libtorrent
: default-build
2008-03-23 06:33:47 +01:00
<threading>multi
<invariant-checks>full
2008-09-15 17:09:20 +02:00
<debug-iterators>on
<link>shared
2014-07-06 21:18:00 +02:00
<picker-debugging>on
;
2005-08-11 13:06:52 +02:00
feature launcher : none valgrind : composite ;
2014-11-09 12:17:13 +01:00
feature.compose <launcher>valgrind : <testing.launcher>"valgrind --tool=memcheck -v --num-callers=20 --read-var-info=yes --track-origins=yes --error-exitcode=222 --suppressions=valgrind_suppressions.txt" <use-valgrind>on ;
test-suite libtorrent :
[ run
test_primitives.cpp
test_packet_buffer.cpp
test_timestamp_history.cpp
test_sha1_hash.cpp
test_bloom_filter.cpp
test_identify_client.cpp
test_merkle.cpp
test_alert_manager.cpp
test_resolve_links.cpp
test_crc32.cpp
test_heterogeneous_queue.cpp
test_ip_voter.cpp
test_sliding_average.cpp
test_socket_io.cpp
test_random.cpp
test_utf8.cpp
test_gzip.cpp
test_bitfield.cpp
test_part_file.cpp
test_peer_list.cpp
test_torrent_info.cpp
test_time.cpp
test_file_storage.cpp
test_peer_priority.cpp
test_threads.cpp
test_tailqueue.cpp
test_bandwidth_limiter.cpp
test_buffer.cpp
test_piece_picker.cpp
test_bencoding.cpp
test_bdecode.cpp
test_http_parser.cpp
test_string.cpp
test_magnet.cpp
test_xml.cpp
test_ip_filter.cpp
test_hasher.cpp
test_dht.cpp
test_block_cache.cpp
test_peer_classes.cpp
test_settings_pack.cpp
test_fence.cpp
test_dos_blocker.cpp
test_upnp.cpp ]
[ run test_storage.cpp ]
2013-05-31 18:33:06 +02:00
[ run test_session.cpp ]
2013-11-24 02:32:51 +01:00
[ run test_read_piece.cpp ]
[ run test_file.cpp ]
[ run test_stat_cache.cpp ]
[ run test_fast_extension.cpp ]
[ run test_privacy.cpp ]
[ run test_priority.cpp ]
[ run test_recheck.cpp ]
[ run test_resume.cpp ]
2013-07-28 17:06:28 +02:00
[ run test_ssl.cpp ]
[ run test_tracker.cpp ]
2013-01-06 05:53:26 +01:00
[ run test_checking.cpp ]
[ run test_url_seed.cpp ]
[ run test_web_seed.cpp ]
[ run test_web_seed_redirect.cpp ]
[ 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 ]
[ run test_web_seed_chunked.cpp ]
[ run test_web_seed_ban.cpp ]
[ run test_pe_crypto.cpp ]
[ run test_remap_files.cpp ]
2010-11-29 02:33:05 +01:00
[ run test_utp.cpp ]
[ run test_auto_unchoke.cpp ]
[ run test_http_connection.cpp ]
[ run test_torrent.cpp ]
[ run test_transfer.cpp ]
[ run test_metadata_extension.cpp ]
2008-11-27 21:51:59 +01:00
[ run test_trackers_extension.cpp ]
[ run test_time_critical.cpp ]
[ run test_super_seeding.cpp ]
[ run test_swarm.cpp ]
2007-10-01 04:09:12 +02:00
[ run test_lsd.cpp ]
[ run test_pex.cpp ]
;
2005-08-11 13:06:52 +02:00