2
0
mirror of https://github.com/boostorg/foreach.git synced 2026-02-13 00:12:18 +00:00
Files
foreach/test/Jamfile
2005-08-26 16:19:04 +00:00

34 lines
848 B
Plaintext
Executable File

# foreach library test Jamfile
# Copyright Eric Niebler 2004
# Use, modification, and distribution is subject to 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)
subproject libs/foreach/test ;
# bring in rules for testing
import testing ;
# Make tests run by default.
DEPENDS all : foreach ;
{
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 ]
;
}