diff --git a/test/runner.c b/test/runner.c index de1d1e7e..778bfb65 100644 --- a/test/runner.c +++ b/test/runner.c @@ -121,8 +121,7 @@ finalize: /* Show error and output from processes if the test failed. */ if (!success) { - LOG("\n=============================================================\n"); - LOGF("`%s` failed: %s\n", test->task_name, errmsg); + LOGF("\n`%s` failed: %s\n", test->task_name, errmsg); for (i = 0; i < process_count; i++) { switch (process_output_size(&processes[i])) { @@ -142,7 +141,7 @@ finalize: break; } } - LOG("\n"); + LOG("=============================================================\n"); /* In benchmark mode show concise output from the main process. */ } else if (benchmark_output) {