~ubuntu-branches/ubuntu/maverick/libtorrent-rasterbar/maverick

« back to all changes in this revision

Viewing changes to test/Jamfile

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2010-08-10 12:59:37 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810125937-jbcmmf17y8yo9hgz
Tags: 0.15.0-0ubuntu1
* New upstream version.
* debian/patches/100_fix_html_docs.patch: refreshed.
* debian/control: bump up standards-version to 3.9.1 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use-project /torrent : .. ;
2
2
 
3
 
exe test_upnp : test_upnp.cpp /torrent//torrent
4
 
        : <link>static <threading>multi <debug-iterators>on <logging>verbose <upnp-logging>on ;
5
 
 
6
3
exe test_natpmp : test_natpmp.cpp /torrent//torrent
7
 
        : <link>static <threading>multi <debug-iterators>on <logging>verbose <upnp-logging>on ;
8
 
 
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
 
        ;
 
4
        : <threading>multi <debug-iterators>on <invariant-checks>full ;
21
5
 
22
6
explicit test_natpmp ;
23
 
explicit test_upnp ;
24
7
 
25
8
project
26
9
   : requirements
27
 
        <library>test_common
 
10
        <library>/torrent//torrent
 
11
        <source>main.cpp
 
12
        <source>setup_transfer.cpp
28
13
   : default-build
29
14
        <threading>multi
30
15
        <invariant-checks>full
31
16
        <debug-iterators>on
32
17
   ;
33
18
 
34
 
 
35
 
test-suite libtorrent : 
36
 
        [ run test_auto_unchoke.cpp ]
37
 
        [ run test_http_connection.cpp ]
 
19
test-suite libtorrent :         
 
20
        [ run test_bandwidth_limiter.cpp ]
38
21
        [ run test_buffer.cpp ]
39
 
        [ run test_storage.cpp ]
40
 
        [ run test_torrent.cpp ]
41
 
        [ run test_transfer.cpp ]
42
22
        [ run test_piece_picker.cpp ]
43
 
#       [ run test_entry.cpp ]
 
23
        [ run test_bencoding.cpp ]
44
24
        [ run test_fast_extension.cpp ]
45
 
        [ run test_pe_crypto.cpp ]
46
 
        [ run test_bencoding.cpp ]
47
 
        [ run test_bdecode_performance.cpp ]
48
25
        [ run test_primitives.cpp ]
49
26
        [ run test_ip_filter.cpp ]
50
27
        [ run test_hasher.cpp ]
 
28
        [ run test_storage.cpp ]
 
29
        [ run test_upnp.cpp ]
 
30
 
 
31
        [ run test_web_seed.cpp ]
 
32
        [ run test_bdecode_performance.cpp ]
 
33
        [ run test_pe_crypto.cpp ]
 
34
 
 
35
        [ run test_auto_unchoke.cpp ]
 
36
        [ run test_http_connection.cpp ]
 
37
        [ run test_torrent.cpp ]
 
38
        [ run test_transfer.cpp ]
 
39
#       [ run test_entry.cpp ]
51
40
        [ run test_metadata_extension.cpp ]
 
41
        [ run test_trackers_extension.cpp ]
52
42
        [ run test_swarm.cpp ]
53
43
        [ run test_lsd.cpp ]
54
44
        [ run test_pex.cpp ]
55
 
        [ run test_web_seed.cpp ]
56
 
        [ run test_bandwidth_limiter.cpp ]
57
45
        ; 
58
46