enable segmented tests

[SVN r73908]
This commit is contained in:
Eric Niebler
2011-08-19 02:04:40 +00:00
parent 9fcb3105e5
commit eb903d71a7

View File

@ -41,6 +41,10 @@ import testing ;
[ run algorithm/reverse_fold.cpp : : : : ]
[ run algorithm/reverse_iter_fold.cpp : : : : ]
[ run algorithm/reverse.cpp : : : : ]
[ run algorithm/segmented_for_each.cpp : : : : ]
[ run algorithm/segmented_find.cpp : : : : ]
[ run algorithm/segmented_find_if.cpp : : : : ]
[ run algorithm/segmented_fold.cpp : : : : ]
[ run algorithm/transform.cpp : : : : ]
[ run algorithm/join.cpp : : : : ]
[ run algorithm/zip.cpp : : : : ]
@ -83,6 +87,7 @@ import testing ;
[ run sequence/map_tie.cpp : : : : ]
[ run sequence/nview.cpp : : : : ]
[ run sequence/reverse_view.cpp : : : : ]
[ run sequence/segmented_iterator_range.cpp : : : : ]
[ run sequence/set.cpp : : : : ]
[ run sequence/single_view.cpp : : : : ]
[ run sequence/std_pair.cpp : : : : ]
@ -149,23 +154,3 @@ import testing ;
;
}
{
# Text for extension features, must be explicitly specified on the command line to be run
# TODO these are not in a test-suite because currently test-suites cannot be marked "explicit"
run algorithm/segmented_for_each.cpp ;
explicit segmented_for_each ;
run algorithm/segmented_find.cpp ;
explicit segmented_find ;
run algorithm/segmented_find_if.cpp ;
explicit segmented_find_if ;
run algorithm/segmented_fold.cpp ;
explicit segmented_fold ;
run sequence/segmented_iterator_range.cpp ;
explicit segmented_iterator_range ;
}