t-runner: fix 'new line' usage for non-verbose mode

This commit is contained in:
Tim Kourt 2018-02-05 15:43:05 -08:00 committed by Denis Kenzior
parent d450b25b07
commit 290f4e24d4
1 changed files with 3 additions and 1 deletions

View File

@ -1360,7 +1360,9 @@ static void print_test_status(char *test_name, enum test_status ts,
case TEST_STATUS_STARTED:
color_str = CONSOLE_LN_RESET;
status_str = "STARTED ";
line_end = "\n";
if (strcmp(verbose_opt, "none"))
line_end = "\n";
break;
case TEST_STATUS_PASSED: