Ticket #10888: patch.txt

File patch.txt, 1.2 KB (added by Richard <legalize@…>, 8 years ago)

patch to fix issue

Line 
1diff -r 99cf3ad36483 boost/test/impl/compiler_log_formatter.ipp
2--- a/boost/test/impl/compiler_log_formatter.ipp Fri Dec 19 10:35:13 2014 -0700
3+++ b/boost/test/impl/compiler_log_formatter.ipp Fri Dec 19 10:42:25 2014 -0700
4@@ -156,15 +156,15 @@
5 break;
6 case BOOST_UTL_ET_WARNING:
7 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num );
8- output << "warning in \"" << test_phase_identifier() << "\": ";
9+ output << "warning: warning in \"" << test_phase_identifier() << "\": ";
10 break;
11 case BOOST_UTL_ET_ERROR:
12 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num );
13- output << "error in \"" << test_phase_identifier() << "\": ";
14+ output << "error: error in \"" << test_phase_identifier() << "\": ";
15 break;
16 case BOOST_UTL_ET_FATAL_ERROR:
17 print_prefix( output, entry_data.m_file_name, entry_data.m_line_num );
18- output << "fatal error in \"" << test_phase_identifier() << "\": ";
19+ output << "error: fatal error in \"" << test_phase_identifier() << "\": ";
20 break;
21 }
22 }