System: removed dependency on Boost.Test

[SVN r51960]
This commit is contained in:
Beman Dawes
2009-03-24 15:38:10 +00:00
parent f1cdde273a
commit 83db702d99

View File

@ -11,7 +11,7 @@
#include <boost/config/warning_disable.hpp>
#include <boost/test/minimal.hpp>
#include <boost/detail/test_framework.hpp>
#include <boost/system/error_code.hpp>
#include <boost/system/cygwin_error.hpp>
#include <boost/system/linux_error.hpp>
@ -49,11 +49,11 @@ namespace
}
}
// test_main ---------------------------------------------------------------//
// main ------------------------------------------------------------------------------//
// TODO: add hash_value tests
int test_main( int, char ** )
int main( int, char ** )
{
std::cout << "General tests...\n";
@ -259,7 +259,7 @@ int test_main( int, char ** )
#endif
return 0;
return boost::test_framework::errors();
}