File: Jamfile

package info (click to toggle)
boost 1.32.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 93,952 kB
  • ctags: 128,458
  • sloc: cpp: 492,477; xml: 52,125; python: 13,519; ansic: 13,013; sh: 1,773; yacc: 853; makefile: 526; perl: 418; lex: 110; csh: 6
file content (50 lines) | stat: -rw-r--r-- 1,704 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#  Boost.Variant Library test Jamfile
#
#  Copyright (C) 2003, Eric Friedman, Itay Maman.
#
#  This material is provided "as is", with absolutely no warranty expressed
#  or implied. Any use is at your own risk.
#
#  Permission to use or copy this software for any purpose is hereby granted
#  without fee, provided the above notices are retained on all copies.
#  Permission to modify the code and to distribute modified code is granted,
#  provided the above notices are retained, and a notice that the code was
#  modified is included with the above copyright notice.
#

subproject libs/variant/test ;

# bring in rules for testing
import testing ;

# Make tests run by default.
DEPENDS all : test ;

{
   # look in BOOST_ROOT for sources first, just in this Jamfile
   local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;

   test-suite variant
     : 
    [ run libs/variant/test/test1.cpp libs/variant/test/class_a.cpp
       : : : : variant_test1 ]
    [ run libs/variant/test/test2.cpp
       : : : : variant_test2 ]
    [ run libs/variant/test/test3.cpp
       : : : : variant_test3 ]
    [ run libs/variant/test/test4.cpp libs/variant/test/class_a.cpp
       : : : : variant_test4 ]
    [ run libs/variant/test/test5.cpp
       : : : : variant_test5 ]
    [ run libs/variant/test/test6.cpp
       : : : : variant_test6 ]
    [ run libs/variant/test/test7.cpp
       : : : : variant_test7 ]
    [ run libs/variant/test/test8.cpp
       : : : : variant_test8 ]
    [ run libs/variant/test/recursive_variant_test.cpp ]
    [ run libs/variant/test/variant_reference_test.cpp ]
    [ run libs/variant/test/variant_comparison_test.cpp ]
    [ run libs/variant/test/variant_visit_test.cpp ]
   ; 
}