From 3b96c3b70b2cdd2c12b35cde6a206d26e16d4752 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 7 Oct 2016 23:07:34 -0500 Subject: [PATCH 1/2] Add, and update, documentation build targets. --- doc/Jamfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/Jamfile b/doc/Jamfile index 8348f7eb..04f9933c 100644 --- a/doc/Jamfile +++ b/doc/Jamfile @@ -25,4 +25,8 @@ boostbook quickbook pdf:img.src.path=$(images_location)/ ; - +############################################################################### +alias boostdoc ; +explicit boostdoc ; +alias boostrelease : quickbook ; +explicit boostrelease ; From 9db262acf56de3fd852ea6a00f87a89c0f9b01fe Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Mon, 17 Sep 2018 07:17:29 -0400 Subject: [PATCH 2/2] 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(); }