From febca584d9aa9857b8d63c27842dd57823f85c1d Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 3 Sep 2016 00:25:51 +0300 Subject: [PATCH] Removed -u command line option for the compressed_pair_test as this option is not recognized by Boost.Test (and presumably never was). This fixes the test execution failure. --- test/Jamfile.v2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index a2d5e4b..7ca9efa 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -11,7 +11,7 @@ import testing ; alias unit_test_framework : # sources /boost//unit_test_framework - ; + ; # Please keep the tests ordered by filename test-suite utility @@ -20,7 +20,7 @@ test-suite utility [ run ../base_from_member_ref_test.cpp ] [ run ../binary_test.cpp ] [ run ../call_traits_test.cpp : -u ] - [ run ../compressed_pair_test.cpp ../../test/build//boost_test_exec_monitor/static : -u ] + [ run ../compressed_pair_test.cpp ../../test/build//boost_test_exec_monitor/static ] [ run ../iterators_test.cpp ../../test/build//boost_test_exec_monitor/static ] [ run next_prior_test.cpp ../../test/build//boost_test_exec_monitor/static ] [ run ../numeric_traits_test.cpp ]