summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/foreach/test/Jamfile.v2
blob: 084c5c8694207bd53f1d4a4cf3ba7051130c22e3 (plain)
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
# (C) Copyright 2004: Eric Niebler
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

# bring in rules for testing
import testing ;

project : requirements <toolset>msvc:<asynch-exceptions>on ;

test-suite "foreach"
    : [ run stl_byval.cpp ]
      [ run stl_byref.cpp ]
      [ run stl_byval_r.cpp ]
      [ run stl_byref_r.cpp ]
      [ run array_byval.cpp ]
      [ run array_byref.cpp ]
      [ run array_byval_r.cpp ]
      [ run array_byref_r.cpp ]
      [ run cstr_byval.cpp ]
      [ run cstr_byref.cpp ]
      [ run cstr_byval_r.cpp ]
      [ run cstr_byref_r.cpp ]
      [ run pair_byval.cpp ]
      [ run pair_byref.cpp ]
      [ run pair_byval_r.cpp ]
      [ run pair_byref_r.cpp ]
      [ run user_defined.cpp ]
      [ run call_once.cpp ]
      [ run rvalue_const.cpp ]
      [ run rvalue_nonconst.cpp ]
      [ run rvalue_const_r.cpp ]
      [ run rvalue_nonconst_r.cpp ]
      [ run dependent_type.cpp ]
      [ run misc.cpp ]
      [ compile noncopyable.cpp ]
    ;