Remove all uses of Boost.Test.

This commit is contained in:
jzmaddock
2015-10-08 10:06:34 +01:00
parent a307fd7077
commit 09e789b4c6
14 changed files with 281 additions and 58 deletions

View File

@ -18,13 +18,14 @@
#include <string>
#include <boost/regex.hpp>
#include <boost/test/test_tools.hpp>
#include <boost/detail/lightweight_main.hpp>
#include "../test_macros.hpp"
#ifdef BOOST_INTEL
#pragma warning(disable:1418 981 983 383)
#endif
int test_main( int , char* [] )
int cpp_main( int , char* [] )
{
// this regex will recurse twice for each whitespace character matched:
boost::regex e("([[:space:]]|.)+");
@ -62,4 +63,3 @@ int test_main( int , char* [] )
return 0;
}
#include <boost/test/included/test_exec_monitor.hpp>