Commit 148cf5f4 authored by Peter Eisentraut's avatar Peter Eisentraut

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
parent 481018f2
......@@ -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++;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment