Changing %define pubkey_pinning_test_build to 1 in spec file is required for testing.
Change-Id: I78f6a5c1731d6675dd9d97bb7d5b6b1427e565e5
void
colour_log_formatter::log_entry_context(
std::ostream& output,
+ boost::unit_test::log_level,
boost::unit_test::const_string value)
{
output << "\n " << value;
}
void
-colour_log_formatter::entry_context_finish(std::ostream& output)
+colour_log_formatter::entry_context_finish(std::ostream& output, boost::unit_test::log_level)
{
output.flush();
}
void log_entry_finish( std::ostream& );
void entry_context_start(std::ostream& os, boost::unit_test::log_level l);
void log_entry_context(std::ostream& os,
+ boost::unit_test::log_level l,
boost::unit_test::const_string value);
- void entry_context_finish(std::ostream& os);
+ void entry_context_finish(std::ostream& os, boost::unit_test::log_level l);
private:
bool m_isTestCaseFailed;