8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af25bc0 commit 93b5cc0Copy full SHA for 93b5cc0
src/test/regress/pg_regress.c
@@ -1807,7 +1807,7 @@ run_schedule(const char *schedule, test_function tfunc)
1807
log_child_failure(statuses[i]);
1808
1809
INSTR_TIME_SUBTRACT(stoptimes[i], starttimes[i]);
1810
- status(_(" (%.0f ms)"), INSTR_TIME_GET_MILLISEC(stoptimes[i]));
+ status(_(" %8.0f ms"), INSTR_TIME_GET_MILLISEC(stoptimes[i]));
1811
1812
status_end();
1813
}
@@ -1887,7 +1887,7 @@ run_single_test(const char *test, test_function tfunc)
1887
log_child_failure(exit_status);
1888
1889
INSTR_TIME_SUBTRACT(stoptime, starttime);
1890
- status(_(" (%.0f ms)"), INSTR_TIME_GET_MILLISEC(stoptime));
+ status(_(" %8.0f ms"), INSTR_TIME_GET_MILLISEC(stoptime));
1891
1892
1893
0 commit comments