* topic/trac-12024-nonexisting-__cxa_demangle-android:
Changelog
Use boost/core/demangle instead of a direct GNU API use
# Conflicts:
# doc/closing_chapters/change_log.qbk
# include/boost/test/impl/execution_monitor.ipp
* topic/PR81-BOOST_TEST_DISABLE_ALT_STACK-for-ESXi:
Added documentation and change log
Added 'BOOST_TEST_DISABLE_ALT_STACK' flag to use with ESXi build.
getchar() is defined as a macro in uClibc. This hits gcc bug 58952 [1] for all
gcc version <= 4.8.2 and building boost/test fails:
./boost/test/impl/unit_test_main.ipp: In function 'int boost::unit_test::unit_test_main(boost::unit_test::init_unit_test_func, int, char**)':
./boost/test/impl/unit_test_main.ipp:194:18: error: expected unqualified-id before '(' token
To allow building boost/test with uClibc based toolchains with gcc <= 4.8.2 use
parenthesis for std::getchar.
[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58952
* develop:
Comment on the fix for maintenance
Fix for clang on windows
Change log update
MSVC12 fix: replacing broken std::is_copy_constructible by boost::is_copy_constructible
Doc: update wrt. latest changes
test for datasets with movable return type
Fixing xvalue forwarding for grid and zip (sample merge operations)
When I try to build with clang on windows (4.2.1 Compatible Clang 3.9.0 (trunk), on top of VC14) I get an error complaining that accessing "this" within an __except block is unimplemented. This patch just stores the value in a local variable to make it available with the __finally clause.
Allows Boost.Test to be built with clang on windows, in VC compatibility mode.
* topic/fix-rvalue-references-in-tuple-packing:
Doc: update wrt. latest changes
test for datasets with movable return type
Fixing xvalue forwarding for grid and zip (sample merge operations)
- uses tuple_cat and decltype internally
- works as before in case of internal references
- constructs holder objects in terms of moveable only types: should improve the sharability of the holders in case of an object used multiple times
* topic/trac-9443-random-seed:
Change log update
Random parameter: updated documentation
Testing the shuffling on different scenarios
Using a stronger random seed in case of seed=1 (time seed)
Ranked children should be initialized for consecutive run of the same test tree
Addressing random number generation issue