Ticket #8559: boost_test.patch

File boost_test.patch, 546 bytes (added by Kamil.Witecki@…, 9 years ago)

Simple patch replacing ' ' with '_' in test case name.

  • boost/test/tree/test_case_template.hpp

     
    8080        full_name += typeid(TestType).name();
    8181        if( boost::is_const<TestType>::value )
    8282            full_name += " const";
     83        std::replace(full_name.begin(), full_name.end(), ' ', '_');
    8384        full_name += '>';
    8485
    8586        m_holder.m_test_cases.push_back( new test_case( full_name,