Skip to content

Commit 148cf5f

Browse files
committed
Align timestamps in pg_regress output
This way the timestamps line up in a mix of "ok" and "FAILED" output. Author: Christoph Berg <[email protected]> Discussion: https://www.postgresql.org/message-id/20190321115059.GF2687%40msg.df7cb.de
1 parent 481018f commit 148cf5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/pg_regress.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1799,7 +1799,7 @@ run_schedule(const char *schedule, test_function tfunc)
17991799
}
18001800
else
18011801
{
1802-
status(_("ok"));
1802+
status(_("ok ")); /* align with FAILED */
18031803
success_count++;
18041804
}
18051805

@@ -1879,7 +1879,7 @@ run_single_test(const char *test, test_function tfunc)
18791879
}
18801880
else
18811881
{
1882-
status(_("ok"));
1882+
status(_("ok ")); /* align with FAILED */
18831883
success_count++;
18841884
}
18851885

0 commit comments

Comments
 (0)