aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/printers/JSONPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework/printers/JSONPrinter.cpp')
-rw-r--r--tests/framework/printers/JSONPrinter.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/framework/printers/JSONPrinter.cpp b/tests/framework/printers/JSONPrinter.cpp
index 5b30389eca..bf8fce7844 100644
--- a/tests/framework/printers/JSONPrinter.cpp
+++ b/tests/framework/printers/JSONPrinter.cpp
@@ -113,6 +113,16 @@ void JSONPrinter::print_error(const std::exception &error)
}
}
+void JSONPrinter::print_info(const std::string &info)
+{
+ std::istringstream iss(info);
+ for(std::string line; !std::getline(iss, line).fail();)
+ {
+ print_separator(_first_error);
+ *_stream << R"(")" << line << R"(")";
+ }
+}
+
void JSONPrinter::print_measurements(const Profiler::MeasurementsMap &measurements)
{
print_separator(_first_test_entry);