summaryrefslogtreecommitdiff
path: root/boost/test/output
diff options
context:
space:
mode:
Diffstat (limited to 'boost/test/output')
-rw-r--r--boost/test/output/compiler_log_formatter.hpp7
-rw-r--r--boost/test/output/plain_report_formatter.hpp5
-rw-r--r--boost/test/output/xml_log_formatter.hpp2
-rw-r--r--boost/test/output/xml_report_formatter.hpp2
4 files changed, 12 insertions, 4 deletions
diff --git a/boost/test/output/compiler_log_formatter.hpp b/boost/test/output/compiler_log_formatter.hpp
index 0b3e881179..e3f98d7567 100644
--- a/boost/test/output/compiler_log_formatter.hpp
+++ b/boost/test/output/compiler_log_formatter.hpp
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2005-2014.
+// (C) Copyright Gennadiy Rozental 2001.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
@@ -33,6 +33,8 @@ namespace output {
class BOOST_TEST_DECL compiler_log_formatter : public unit_test_log_formatter {
public:
+ compiler_log_formatter() : m_color_output( false ) {}
+
// Formatter interface
void log_start( std::ostream&, counter_t test_cases_amount );
void log_finish( std::ostream& );
@@ -56,6 +58,9 @@ public:
protected:
virtual void print_prefix( std::ostream&, const_string file, std::size_t line );
+
+ // Data members
+ bool m_color_output;
};
} // namespace output
diff --git a/boost/test/output/plain_report_formatter.hpp b/boost/test/output/plain_report_formatter.hpp
index ff8924f623..8c50964597 100644
--- a/boost/test/output/plain_report_formatter.hpp
+++ b/boost/test/output/plain_report_formatter.hpp
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2005-2014.
+// (C) Copyright Gennadiy Rozental 2001.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
@@ -33,6 +33,8 @@ namespace output {
class plain_report_formatter : public results_reporter::format {
public:
+ plain_report_formatter() : m_indent( 0 ), m_color_output( false ) {}
+
// Formatter interface
void results_report_start( std::ostream& ostr );
void results_report_finish( std::ostream& ostr );
@@ -45,6 +47,7 @@ public:
private:
// Data members
counter_t m_indent;
+ bool m_color_output;
};
} // namespace output
diff --git a/boost/test/output/xml_log_formatter.hpp b/boost/test/output/xml_log_formatter.hpp
index 7c05e482e7..4d848a0425 100644
--- a/boost/test/output/xml_log_formatter.hpp
+++ b/boost/test/output/xml_log_formatter.hpp
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2005-2014.
+// (C) Copyright Gennadiy Rozental 2001.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
diff --git a/boost/test/output/xml_report_formatter.hpp b/boost/test/output/xml_report_formatter.hpp
index ab183d02ae..ca5e47182f 100644
--- a/boost/test/output/xml_report_formatter.hpp
+++ b/boost/test/output/xml_report_formatter.hpp
@@ -1,4 +1,4 @@
-// (C) Copyright Gennadiy Rozental 2005-2014.
+// (C) Copyright Gennadiy Rozental 2001.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)