diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-04-08 03:09:47 +0000 |
---|---|---|
committer | <> | 2015-05-05 14:37:32 +0000 |
commit | f2541bb90af059680aa7036f315f052175999355 (patch) | |
tree | a5b214744b256f07e1dc2bd7273035a7808c659f /libs/atomic/test/native_api.cpp | |
parent | ed232fdd34968697a68783b3195b1da4226915b5 (diff) | |
download | boost-tarball-master.tar.gz |
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_58_0.tar.bz2.HEADboost_1_58_0master
Diffstat (limited to 'libs/atomic/test/native_api.cpp')
-rw-r--r-- | libs/atomic/test/native_api.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libs/atomic/test/native_api.cpp b/libs/atomic/test/native_api.cpp index ddcc0f653..c9b3dad99 100644 --- a/libs/atomic/test/native_api.cpp +++ b/libs/atomic/test/native_api.cpp @@ -4,14 +4,15 @@ // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) -#include <boost/config.hpp> #include <boost/atomic.hpp> + +#include <boost/config.hpp> #include <boost/cstdint.hpp> -#include <boost/test/minimal.hpp> +#include <boost/core/lightweight_test.hpp> #include "api_test_helpers.hpp" -int test_main(int, char *[]) +int main(int, char *[]) { test_flag_api(); @@ -66,5 +67,5 @@ int test_main(int, char *[]) // Other non-trivial constructors are allowed. test_struct_with_ctor_api(); - return 0; + return boost::report_errors(); } |