aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index 73c87b5459..c62de66588 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -254,9 +254,10 @@ int main(int argc, char **argv)
if(list_tests->value())
{
- for(const auto &info : framework.test_infos())
+ for(auto &p : printers)
{
- std::cout << "[" << info.id << ", " << info.mode << ", " << info.status << "] " << info.name << "\n";
+ p->print_list_tests(framework.test_infos());
+ p->print_global_footer();
}
return 0;