From 1d702deeb5d3d5caca3a6c7e258636127865763f Mon Sep 17 00:00:00 2001 From: Jakub Tyszkowski Date: Mon, 21 Jul 2014 15:23:39 +0200 Subject: [PATCH] shared/tester: Increase space for test case title This makes more space for case's title in the summary, and still retains 80 chars boundary. This fixes column alignment when using long case titles i.e. in new android-tester. --- src/shared/tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/tester.c b/src/shared/tester.c index 88dfaeb13..95b4682f1 100644 --- a/src/shared/tester.c +++ b/src/shared/tester.c @@ -53,7 +53,7 @@ printf(color fmt COLOR_OFF "\n", ## args) #define print_summary(label, color, value, fmt, args...) \ - printf("%-45s " color "%-10s" COLOR_OFF fmt "\n", \ + printf("%-52s " color "%-10s" COLOR_OFF fmt "\n", \ label, value, ## args) #define print_progress(name, color, fmt, args...) \ -- 2.47.3