test runner separator should be paired with progress bar

This commit is contained in:
Ryan Dahl 2011-06-07 14:23:40 +02:00
parent 8a0742910c
commit 3ee60b7351

View File

@ -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) {