• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# (C) Copyright 2004: Eric Niebler
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5# bring in rules for testing
6import testing ;
7
8project : requirements <toolset>msvc:<asynch-exceptions>on ;
9
10test-suite "foreach"
11    : [ run stl_byval.cpp ]
12      [ run stl_byref.cpp ]
13      [ run stl_byval_r.cpp ]
14      [ run stl_byref_r.cpp ]
15      [ run array_byval.cpp ]
16      [ run array_byref.cpp ]
17      [ run array_byval_r.cpp ]
18      [ run array_byref_r.cpp ]
19      [ run cstr_byval.cpp ]
20      [ run cstr_byref.cpp ]
21      [ run cstr_byval_r.cpp ]
22      [ run cstr_byref_r.cpp ]
23      [ run pair_byval.cpp ]
24      [ run pair_byref.cpp ]
25      [ run pair_byval_r.cpp ]
26      [ run pair_byref_r.cpp ]
27      [ run user_defined.cpp ]
28      [ run call_once.cpp ]
29      [ run rvalue_const.cpp ]
30      [ run rvalue_nonconst.cpp ]
31      [ run rvalue_const_r.cpp ]
32      [ run rvalue_nonconst_r.cpp ]
33      [ run dependent_type.cpp ]
34      [ run misc.cpp ]
35      [ compile noncopyable.cpp ]
36    ;
37