Files
range/test/Jamfile

79 lines
1.2 KiB
Plaintext
Raw Normal View History

2004-06-29 02:58:13 +00:00
subproject libs/range/test ;
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
DEPENDS all : test ;
{
test-suite range
: [ run
array.cpp
: :
:
: array_test
]
[ run
iterator_pair.cpp
: :
:
: iterator_pair_test
]
[ run
std_container.cpp
: :
:
: std_container_test
]
[ run
string.cpp
: :
:
: string_test
]
[ run
iterator_range.cpp
: :
:
: iterator_range
]
[ run
partial_workaround.cpp
: :
:
: workaround_test
]
[ run
algorithm_example.cpp
: :
:
: example_test
]
[ run
reversible_range.cpp
: :
:
: reversible_range_test
2004-07-23 12:38:56 +00:00
]
[ run
compat1.cpp
: :
:
: compat1_test
]
[ run
compat2.cpp
: :
:
: compat2_test
]
[ run
compat3.cpp
: :
:
: compat3_test
]
;
2004-06-29 02:58:13 +00:00
}