Merged boost::algorithm::gather and updated tests for Utility, Algorithm and Utility libraries

[SVN r83154]
This commit is contained in:
Marshall Clow
2013-02-25 18:43:26 +00:00
parent 1b2cd6378b
commit c1fdb477c1
3 changed files with 17 additions and 14 deletions

View File

@@ -13,8 +13,8 @@
#include <boost/utility/string_ref.hpp>
#include <boost/test/included/test_exec_monitor.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
typedef boost::string_ref string_ref;
@@ -94,8 +94,8 @@ const char *test_strings [] = {
NULL
};
int test_main( int , char* [] ) {
BOOST_AUTO_TEST_CASE( test_main )
{
const char **p = &test_strings[0];
while ( *p != NULL ) {
@@ -106,6 +106,4 @@ int test_main( int , char* [] ) {
p++;
}
return 0;
}
}