From 6badd7d9ed96cad01ef093ff68fc95fea550ba4c Mon Sep 17 00:00:00 2001 From: Till Hofmann Date: Mon, 10 Feb 2020 14:52:35 +0100 Subject: [PATCH] Switch back to uncolored output after printing filters After printing the list of filters, switch back from yellow to black before printing a newline to avoid the remaining output to be colored in yellow. --- src/catch2/reporters/catch_reporter_console.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/catch2/reporters/catch_reporter_console.cpp b/src/catch2/reporters/catch_reporter_console.cpp index bd016144..65021ed7 100644 --- a/src/catch2/reporters/catch_reporter_console.cpp +++ b/src/catch2/reporters/catch_reporter_console.cpp @@ -679,8 +679,11 @@ void ConsoleReporter::printSummaryDivider() { } void ConsoleReporter::printTestFilters() { - if (m_config->testSpec().hasFilters()) - stream << Colour(Colour::BrightYellow) << "Filters: " << serializeFilters( m_config->getTestsOrTags() ) << '\n'; + if (m_config->testSpec().hasFilters()) { + stream << Colour(Colour::BrightYellow) + << "Filters: " << serializeFilters(m_config->getTestsOrTags()) + << Colour(Colour::None) << '\n'; + } } } // end namespace Catch