aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-03-25 10:00:11 +0100
committerPeter Eisentraut <peter@eisentraut.org>2019-03-25 10:02:24 +0100
commit148cf5f462e53f374a2085b2fa8dcde944539b03 (patch)
tree52d41c634eaf59e5584f4454a0fb5b19fe1115d5 /src
parent481018f2804065cb5ed1cde75b7c0596aeef959a (diff)
downloadpostgresql-148cf5f462e53f374a2085b2fa8dcde944539b03.tar.gz
postgresql-148cf5f462e53f374a2085b2fa8dcde944539b03.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/pg_regress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index a18a6f6c45a..8111d95b1ea 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++;
}