summaryrefslogtreecommitdiff
path: root/tests/colour_log_formatter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/colour_log_formatter.cpp')
-rw-r--r--tests/colour_log_formatter.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/colour_log_formatter.cpp b/tests/colour_log_formatter.cpp
index 4a9ea4f..dbf080c 100644
--- a/tests/colour_log_formatter.cpp
+++ b/tests/colour_log_formatter.cpp
@@ -124,6 +124,20 @@ colour_log_formatter::log_build_info(std::ostream &output)
//____________________________________________________________________________//
void
+colour_log_formatter::log_build_info(std::ostream &output, bool log_build_info)
+{
+ if (log_build_info)
+ output << "Platform: " << BOOST_PLATFORM << '\n'
+ << "Compiler: " << BOOST_COMPILER << '\n'
+ << "STL : " << BOOST_STDLIB << '\n';
+ output << "Boost : " << BOOST_VERSION / 100000 << '.'
+ << BOOST_VERSION / 100 % 1000 << '.'
+ << BOOST_VERSION % 100 << std::endl;
+}
+
+//____________________________________________________________________________//
+
+void
colour_log_formatter::test_unit_start(
std::ostream &output,
test_unit const &tu)