update boost
This commit is contained in:
@@ -37,25 +37,25 @@ namespace output {
|
||||
class xml_log_formatter : public unit_test_log_formatter {
|
||||
public:
|
||||
// Formatter interface
|
||||
void log_start( std::ostream&, counter_t test_cases_amount );
|
||||
void log_finish( std::ostream& );
|
||||
void log_build_info( std::ostream&, bool );
|
||||
void log_start( std::ostream&, counter_t test_cases_amount ) BOOST_OVERRIDE;
|
||||
void log_finish( std::ostream& ) BOOST_OVERRIDE;
|
||||
void log_build_info( std::ostream&, bool ) BOOST_OVERRIDE;
|
||||
|
||||
void test_unit_start( std::ostream&, test_unit const& tu );
|
||||
void test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed );
|
||||
void test_unit_skipped( std::ostream&, test_unit const& tu, const_string reason );
|
||||
void test_unit_start( std::ostream&, test_unit const& tu ) BOOST_OVERRIDE;
|
||||
void test_unit_finish( std::ostream&, test_unit const& tu, unsigned long elapsed ) BOOST_OVERRIDE;
|
||||
void test_unit_skipped( std::ostream&, test_unit const& tu, const_string reason ) BOOST_OVERRIDE;
|
||||
|
||||
void log_exception_start( std::ostream&, log_checkpoint_data const&, execution_exception const& ex );
|
||||
void log_exception_finish( std::ostream& );
|
||||
void log_exception_start( std::ostream&, log_checkpoint_data const&, execution_exception const& ex ) BOOST_OVERRIDE;
|
||||
void log_exception_finish( std::ostream& ) BOOST_OVERRIDE;
|
||||
|
||||
void log_entry_start( std::ostream&, log_entry_data const&, log_entry_types let );
|
||||
void log_entry_start( std::ostream&, log_entry_data const&, log_entry_types let ) BOOST_OVERRIDE;
|
||||
using unit_test_log_formatter::log_entry_value; // bring base class functions into overload set
|
||||
void log_entry_value( std::ostream&, const_string value );
|
||||
void log_entry_finish( std::ostream& );
|
||||
void log_entry_value( std::ostream&, const_string value ) BOOST_OVERRIDE;
|
||||
void log_entry_finish( std::ostream& ) BOOST_OVERRIDE;
|
||||
|
||||
void entry_context_start( std::ostream&, log_level );
|
||||
void log_entry_context( std::ostream&, log_level, const_string );
|
||||
void entry_context_finish( std::ostream&, log_level );
|
||||
void entry_context_start( std::ostream&, log_level ) BOOST_OVERRIDE;
|
||||
void log_entry_context( std::ostream&, log_level, const_string ) BOOST_OVERRIDE;
|
||||
void entry_context_finish( std::ostream&, log_level ) BOOST_OVERRIDE;
|
||||
|
||||
private:
|
||||
// Data members
|
||||
|
||||
Reference in New Issue
Block a user