diff --git a/test/BoostBuild.py b/test/BoostBuild.py index 6e87d8a4e..209fba3bd 100644 --- a/test/BoostBuild.py +++ b/test/BoostBuild.py @@ -114,8 +114,13 @@ elif hasattr(os, "uname"): default_os = os.uname()[0].lower() def prepare_prefixes_and_suffixes(toolset, target_os=default_os): - prepare_suffix_map(toolset, target_os) - prepare_library_prefix(toolset, target_os) + ind = toolset.find('-') + if ind == -1: + rtoolset = toolset + else: + rtoolset = toolset[:ind] + prepare_suffix_map(rtoolset, target_os) + prepare_library_prefix(rtoolset, target_os) def prepare_suffix_map(toolset, target_os=default_os): diff --git a/test/test_system.html b/test/test_system.html index 6b1100f3d..c70a1177b 100644 --- a/test/test_system.html +++ b/test/test_system.html @@ -117,6 +117,11 @@ test-config.jam in $boost_build_root/test directory. In this case, site-config.jam and user-config.jam will be ignored for testing. + +
When all is set, you can run all the tests using the test_all.py