From: Peter Eisentraut Date: Mon, 25 Mar 2019 09:00:11 +0000 (+0100) Subject: Align timestamps in pg_regress output X-Git-Tag: REL_12_BETA1~432 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=148cf5f462e53f374a2085b2fa8dcde944539b03;p=postgresql Align timestamps in pg_regress output This way the timestamps line up in a mix of "ok" and "FAILED" output. Author: Christoph Berg Discussion: https://www.postgresql.org/message-id/20190321115059.GF2687%40msg.df7cb.de --- diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index a18a6f6c45..8111d95b1e 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -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++; }