aboutsummaryrefslogtreecommitdiff
path: root/framework/printers/Printer.h
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-07-26 16:03:58 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commit542002cf3d9acc2858e2311966cd9b060d70b5a6 (patch)
tree19787c9ff55c192be79398d1b07334277c29832a /framework/printers/Printer.h
parentba9b3f58583331100346cf4fad16d51aa11a3677 (diff)
downloadComputeLibrary-542002cf3d9acc2858e2311966cd9b060d70b5a6.tar.gz
COMPMID-415: Print test id
Change-Id: Ie8521aac33361a9296529eeea831f195319e0db7 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/81726 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
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;