Align timestamps in pg_regress output

This way the timestamps line up in a mix of "ok" and "FAILED" output.

Author: Christoph Berg <christoph.berg@credativ.de>
Discussion: https://www.postgresql.org/message-id/20190321115059.GF2687%40msg.df7cb.de
This commit is contained in:
Peter Eisentraut 2019-03-25 10:00:11 +01:00
parent 481018f280
commit 148cf5f462
1 changed files with 2 additions and 2 deletions

View File

@ -1799,7 +1799,7 @@ run_schedule(const char *schedule, test_function tfunc)
}
else
{
status(_("ok"));
status(_("ok ")); /* align with FAILED */
success_count++;
}
@ -1879,7 +1879,7 @@ run_single_test(const char *test, test_function tfunc)
}
else
{
status(_("ok"));
status(_("ok ")); /* align with FAILED */
success_count++;
}