fixed typo
[libtorrent.git] / test / Jamfile
blob0392f71bd8cfdf742fc3d9aaa853972db2ed6ae4
1 use-project /torrent : .. ;
3 exe test_upnp : test_upnp.cpp /torrent//torrent
4         : <link>static <threading>multi <logging>verbose <upnp-logging>on ;
6 exe test_natpmp : test_natpmp.cpp /torrent//torrent
7         : <link>static <threading>multi <logging>verbose <upnp-logging>on ;
9 lib test_common
10         :
11         main.cpp
12         setup_transfer.cpp
13         :
14         <link>static
15         <threading>multi
16         :
17         <link>static
18         <threading>multi
19         <library>/torrent//torrent
20         ;
22 project
23    : requirements
24         <library>test_common
25    : default-build
26         <threading>multi
27         <invariant-checks>full
28    ;
31 test-suite libtorrent : 
32         [ run test_auto_unchoke.cpp ]
33         [ run test_http_connection.cpp ]
34         [ run test_buffer.cpp ]
35         [ run test_storage.cpp ]
36         [ run test_torrent.cpp ]
37         [ run test_transfer.cpp ]
38         [ run test_piece_picker.cpp ]
39 #       [ run test_entry.cpp ]
40         [ run test_fast_extension.cpp ]
41         [ run test_pe_crypto.cpp ]
42         [ run test_bencoding.cpp ]
43         [ run test_bdecode_performance.cpp ]
44         [ run test_primitives.cpp ]
45         [ run test_ip_filter.cpp ]
46         [ run test_hasher.cpp ]
47         [ run test_metadata_extension.cpp ]
48         [ run test_swarm.cpp ]
49         [ run test_lsd.cpp ]
50         [ run test_pex.cpp ]
51         [ run test_web_seed.cpp ]
52         [ run test_bandwidth_limiter.cpp ]
53         ;