From dbfb31cdee063ec61e0ab1087f99f235c12d2e7e Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 24 Nov 2017 11:24:45 +0000 Subject: COMPMID-556 Print tests list using printers rather than cout Will help with scripting to split the tests to run across several boards Change-Id: I32806c3cd03cd1b4af1865cd4fdb0422d609eff0 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/110535 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com Reviewed-by: Gian Marco Iodice --- tests/framework/printers/PrettyPrinter.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/framework/printers/PrettyPrinter.cpp') diff --git a/tests/framework/printers/PrettyPrinter.cpp b/tests/framework/printers/PrettyPrinter.cpp index 280813f044..a2ce821f6b 100644 --- a/tests/framework/printers/PrettyPrinter.cpp +++ b/tests/framework/printers/PrettyPrinter.cpp @@ -108,6 +108,13 @@ void PrettyPrinter::print_error(const std::exception &error, bool expected) *_stream << begin_color("1") << prefix << error.what() << end_color() << "\n"; } +void PrettyPrinter::print_list_tests(const std::vector &infos) +{ + for(auto info : infos) + { + *_stream << "[" << info.id << ", " << info.mode << ", " << info.status << "] " << info.name << "\n"; + } +} void PrettyPrinter::print_measurements(const Profiler::MeasurementsMap &measurements) { for(const auto &instrument : measurements) -- cgit v1.2.1