aboutsummaryrefslogtreecommitdiff
path: root/framework/printers/PrettyPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'framework/printers/PrettyPrinter.cpp')
-rw-r--r--framework/printers/PrettyPrinter.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/framework/printers/PrettyPrinter.cpp b/framework/printers/PrettyPrinter.cpp
index 77fb6404a8..fd90401693 100644
--- a/framework/printers/PrettyPrinter.cpp
+++ b/framework/printers/PrettyPrinter.cpp
@@ -23,6 +23,8 @@
*/
#include "PrettyPrinter.h"
+#include "framework/Framework.h"
+
#include <algorithm>
namespace arm_compute
@@ -77,9 +79,9 @@ void PrettyPrinter::print_run_footer()
{
}
-void PrettyPrinter::print_test_header(const std::string &name)
+void PrettyPrinter::print_test_header(const TestInfo &info)
{
- *_stream << begin_color("2") << "Running '" << name << "'" << end_color() << "\n";
+ *_stream << begin_color("2") << "Running [" << info.id << "] '" << info.name << "'" << end_color() << "\n";
}
void PrettyPrinter::print_test_footer()