From 9db262acf56de3fd852ea6a00f87a89c0f9b01fe Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Mon, 17 Sep 2018 07:17:29 -0400 Subject: [PATCH] Fix unit tests that did not return report_errors() --- test/sequence/adt_attribute_proxy.cpp | 3 ++- test/sequence/github-176.cpp | 1 + test/sequence/hash.cpp | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/test/sequence/adt_attribute_proxy.cpp b/test/sequence/adt_attribute_proxy.cpp index d5a947af..eae4eb9a 100644 --- a/test/sequence/adt_attribute_proxy.cpp +++ b/test/sequence/adt_attribute_proxy.cpp @@ -5,7 +5,7 @@ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ -#include +#include #include #include #include @@ -185,4 +185,5 @@ int main() BOOST_TEST(fusion::front(ec).get()=="marshall mathers"); BOOST_TEST(fusion::back(ec).get()==37); } + return boost::report_errors(); } diff --git a/test/sequence/github-176.cpp b/test/sequence/github-176.cpp index 3301220d..3f57df27 100644 --- a/test/sequence/github-176.cpp +++ b/test/sequence/github-176.cpp @@ -86,4 +86,5 @@ int main() test_at_key >(); #endif test_at_key > >(); + return boost::report_errors(); } diff --git a/test/sequence/hash.cpp b/test/sequence/hash.cpp index 3740bf55..30b44055 100644 --- a/test/sequence/hash.cpp +++ b/test/sequence/hash.cpp @@ -7,7 +7,7 @@ #include -#include +#include #include #include @@ -55,4 +55,5 @@ int main() BOOST_TEST(hash_value(c) != hash_value(d)); BOOST_TEST(hash_value(c) != hash_value(e)); BOOST_TEST(hash_value(d) != hash_value(e)); + return boost::report_errors(); }