id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 7000,Patch let easy mixing auto registered test_suit test cases with manually registred,Vladimir Merzliakov ,Gennadiy Rozental,"Currently not easy add manually registred test_cases/test_suits in autoreditred test_suits. Main problem in absent way get current test_suit context for register. But this problem easy fixed in suggested patch. With applied patch possible have like code: BOOST_AUTO_TEST_SUITE( AppTests ) BOOST_AUTO_TEST_SUITE( AutoAddedTests ) ... BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE( ManualAddedTests ) static struct ManualAddedTestsReg { ManualAddedTestsReg() { current_test_suit().add( BOOST_TEST_CASE( &test_case1 ) ); current_test_suit().add( BOOST_TEST_CASE( &test_case2 ) ); ... } } manualAddedTestsReg; BOOST_AUTO_TEST_SUITE_END() BOOST_AUTO_TEST_SUITE_END() But most usefull case can be if need add different test cases list in some cases dependent from options. For example based at some directory test data files list, etc.",Patches,closed,To Be Determined,test,Boost 1.50.0,Problem,fixed,,