Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75031 - trunk/boost/test/impl
From: gennadiy.rozental_at_[hidden]
Date: 2011-10-18 04:54:54


Author: rogeeff
Date: 2011-10-18 04:54:51 EDT (Tue, 18 Oct 2011)
New Revision: 75031
URL: http://svn.boost.org/trac/boost/changeset/75031

Log:
Make Boost.Test error messages to appear in VC10 errors list
Fixes #5374
Text files modified:
   trunk/boost/test/impl/compiler_log_formatter.ipp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/test/impl/compiler_log_formatter.ipp
==============================================================================
--- trunk/boost/test/impl/compiler_log_formatter.ipp (original)
+++ trunk/boost/test/impl/compiler_log_formatter.ipp 2011-10-18 04:54:51 EDT (Tue, 18 Oct 2011)
@@ -182,19 +182,19 @@
             print_prefix( output, entry_data.m_file_name, entry_data.m_line_num );
             if( runtime_config::color_output() )
                 output << setcolor( term_attr::BRIGHT, term_color::YELLOW );
- output << "warning in \"" << test_phase_identifier() << "\": ";
+ output << "warning: in \"" << test_phase_identifier() << "\": ";
             break;
         case BOOST_UTL_ET_ERROR:
             print_prefix( output, entry_data.m_file_name, entry_data.m_line_num );
             if( runtime_config::color_output() )
                 output << setcolor( term_attr::BRIGHT, term_color::RED );
- output << "error in \"" << test_phase_identifier() << "\": ";
+ output << "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 );
             if( runtime_config::color_output() )
                 output << setcolor( term_attr::BLINK, term_color::RED );
- output << "fatal error in \"" << test_phase_identifier() << "\": ";
+ output << "fatal error: in \"" << test_phase_identifier() << "\": ";
             break;
     }
 }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk