premiere-libtorrent/test/Jamfile

83 lines
1.9 KiB
Plaintext
Raw Normal View History

2011-04-10 01:50:33 +02:00
import testing ;
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
explicit test_natpmp ;
rule libtorrent_dependency ( properties * )
{
local result ;
if <toolset>msvc in $(properties)
{
# for some reason, the visual studio debugger seems
# to get very confused with the dynamic linking.
# since debugging unit tests is common, just link
# statically with msvc
result += <library>/torrent//torrent/<link>static/<boost-link>static/<export-extra>on ;
}
else
{
result += <library>/torrent//torrent/<link>shared/<boost-link>shared/<export-extra>on ;
}
return $(result) ;
}
project
: requirements
<conditional>@libtorrent_dependency
2009-04-10 10:40:13 +02:00
<source>main.cpp
2009-11-30 08:03:34 +01:00
<source>setup_transfer.cpp
2013-06-12 19:03:56 +02:00
<source>dht_server.cpp
<source>peer_server.cpp
2008-03-23 06:33:47 +01:00
: default-build
<threading>multi
<invariant-checks>full
2008-09-15 17:09:20 +02:00
<debug-iterators>on
;
2005-08-11 13:06:52 +02:00
2009-04-10 10:40:13 +02:00
test-suite libtorrent :
2013-06-09 01:37:11 +02:00
[ run test_file_storage.cpp ]
[ run test_peer_priority.cpp ]
[ run test_file.cpp ]
2013-06-12 09:57:13 +02:00
[ run test_privacy.cpp ]
[ run test_threads.cpp ]
[ run test_rss.cpp ]
[ run test_bandwidth_limiter.cpp ]
[ run test_buffer.cpp ]
2005-08-12 14:40:58 +02:00
[ run test_piece_picker.cpp ]
2005-08-11 13:06:52 +02:00
[ run test_bencoding.cpp ]
[ run test_fast_extension.cpp ]
[ run test_primitives.cpp ]
2005-08-11 13:06:52 +02:00
[ run test_ip_filter.cpp ]
[ run test_hasher.cpp ]
[ run test_dht.cpp ]
[ run test_storage.cpp ]
2013-01-31 04:39:14 +01:00
[ run test_torrent_parse.cpp ]
2013-05-31 18:33:06 +02:00
[ run test_session.cpp ]
[ run test_upnp.cpp ]
[ run test_tracker.cpp ]
2013-01-06 05:53:26 +01:00
[ run test_checking.cpp ]
[ run test_web_seed.cpp ]
[ run test_bdecode_performance.cpp ]
[ run test_pe_crypto.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_entry.cpp ]
[ run test_metadata_extension.cpp ]
2008-11-27 21:51:59 +01:00
[ run test_trackers_extension.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
;