2
0
mirror of https://github.com/boostorg/foreach.git synced 2026-02-10 23:32:29 +00:00
Files
foreach/test/Jamfile.v2
2005-12-22 06:40:21 +00:00

24 lines
684 B
Plaintext
Executable File

# (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 ;
test-suite "foreach"
: [ run stl_byval.cpp ]
[ run stl_byref.cpp ]
[ run array_byval.cpp ]
[ run array_byref.cpp ]
[ run cstr_byval.cpp ]
[ run cstr_byref.cpp ]
[ run pair_byval.cpp ]
[ run pair_byref.cpp ]
[ run user_defined.cpp ]
[ run call_once.cpp ]
[ run rvalue_const.cpp ]
[ run rvalue_nonconst.cpp ]
[ run dependent_type.cpp ]
[ compile noncopyable.cpp ]
;