diff -r 99cf3ad36483 boost/test/impl/compiler_log_formatter.ipp --- a/boost/test/impl/compiler_log_formatter.ipp Fri Dec 19 10:35:13 2014 -0700 +++ b/boost/test/impl/compiler_log_formatter.ipp Fri Dec 19 10:42:25 2014 -0700 @@ -156,15 +156,15 @@ break; case BOOST_UTL_ET_WARNING: print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); - output << "warning in \"" << test_phase_identifier() << "\": "; + output << "warning: warning in \"" << test_phase_identifier() << "\": "; break; case BOOST_UTL_ET_ERROR: print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); - output << "error in \"" << test_phase_identifier() << "\": "; + output << "error: error in \"" << test_phase_identifier() << "\": "; break; case BOOST_UTL_ET_FATAL_ERROR: print_prefix( output, entry_data.m_file_name, entry_data.m_line_num ); - output << "fatal error in \"" << test_phase_identifier() << "\": "; + output << "error: fatal error in \"" << test_phase_identifier() << "\": "; break; } }