mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-18 15:12:13 +02:00
24 lines
742 B
Plaintext
24 lines
742 B
Plaintext
# Copyright David Abrahams 2006. 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)
|
|
subproject libs/iterator/example ;
|
|
|
|
import testing ;
|
|
|
|
# Make tests run by default.
|
|
DEPENDS all : test ;
|
|
|
|
test-suite iterator_examples
|
|
: [ run reverse_iterator.cpp ]
|
|
[ run node_iterator1.cpp ]
|
|
[ run node_iterator2.cpp ]
|
|
[ run node_iterator3.cpp ]
|
|
[ run counting_iterator_example.cpp ]
|
|
[ run filter_iterator_example.cpp ]
|
|
[ run func_output_iter_example.cpp ]
|
|
[ run indirect_iterator_example.cpp ]
|
|
[ run permutation_iter_example.cpp ]
|
|
[ run reverse_iterator_example.cpp ]
|
|
[ run transform_iterator_example.cpp ]
|
|
;
|