aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2018-03-01 02:45:41 -0800
committerAndres Freund <andres@anarazel.de>2018-03-01 02:48:33 -0800
commit1437824564f47e8e7641e98958a08c1544b6b8f4 (patch)
treed5db50026753a298477c93b9394c109c5302ea63 /src
parent9c4968469abe01a030307f49837fa2cf51fcdb4b (diff)
downloadpostgresql-1437824564f47e8e7641e98958a08c1544b6b8f4.tar.gz
postgresql-1437824564f47e8e7641e98958a08c1544b6b8f4.zip
pg_regress: Increase space available for test names.
A few isolationtester tests with reasonable names are too wide to nicely align. Increase space. Author: Thomas Munro Discussion: https://postgr.es/m/CAEepm=2v7+EHs6zsJzFn+zJOT4F4Kb69Z1xJ7Zf5kgwLr1n=VA@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/pg_regress.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index a1ee1041b42..4b24c4ac71f 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -1690,7 +1690,7 @@ run_schedule(const char *schedule, test_function tfunc)
if (num_tests == 1)
{
- status(_("test %-24s ... "), tests[0]);
+ status(_("test %-28s ... "), tests[0]);
pids[0] = (tfunc) (tests[0], &resultfiles[0], &expectfiles[0], &tags[0]);
wait_for_tests(pids, statuses, NULL, 1);
/* status line is finished below */
@@ -1741,7 +1741,7 @@ run_schedule(const char *schedule, test_function tfunc)
bool differ = false;
if (num_tests > 1)
- status(_(" %-24s ... "), tests[i]);
+ status(_(" %-28s ... "), tests[i]);
/*
* Advance over all three lists simultaneously.
@@ -1835,7 +1835,7 @@ run_single_test(const char *test, test_function tfunc)
*tl;
bool differ = false;
- status(_("test %-24s ... "), test);
+ status(_("test %-28s ... "), test);
pid = (tfunc) (test, &resultfiles, &expectfiles, &tags);
wait_for_tests(&pid, &exit_status, NULL, 1);