From eb903d71a79367fb35e2ae9817d06c4e3b29e26c Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Fri, 19 Aug 2011 02:04:40 +0000 Subject: [PATCH] enable segmented tests [SVN r73908] --- test/Jamfile | 25 +++++-------------------- 1 file changed, 5 insertions(+), 20 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 4dd815c4..9cb6120d 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -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 ; -}