aboutsummaryrefslogtreecommitdiff
path: root/framework/printers/Printer.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/printers/Printer.h')
-rw-r--r--framework/printers/Printer.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/framework/printers/Printer.h b/framework/printers/Printer.h
index 7e1936413b..7d8af12416 100644
--- a/framework/printers/Printer.h
+++ b/framework/printers/Printer.h
@@ -24,7 +24,7 @@
#ifndef ARM_COMPUTE_TEST_PRINTER
#define ARM_COMPUTE_TEST_PRINTER
-#include "../Profiler.h"
+#include "framework/Profiler.h"
#include <fstream>
#include <iostream>
@@ -36,6 +36,8 @@ namespace test
{
namespace framework
{
+struct TestInfo;
+
/** Abstract printer class used by the @ref Framework to present output. */
class Printer
{
@@ -86,9 +88,9 @@ public:
/** Print header before a test.
*
- * @param[in] name test_name.
+ * @param[in] info Test info.
*/
- virtual void print_test_header(const std::string &name) = 0;
+ virtual void print_test_header(const TestInfo &info) = 0;
/** Print footer after a test. */
virtual void print_test_footer() = 0;