iterator/example/Jamfile
Dave Abrahams 1f999864a1 Fix 31 character limit
[SVN r25193]
2004-09-18 13:32:24 +00:00

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 ]
;