mirror of
https://github.com/boostorg/iterator.git
synced 2025-05-11 21:43:54 +00:00
21 lines
558 B
Plaintext
21 lines
558 B
Plaintext
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 ]
|
|
;
|