Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1437824

Browse files
committed
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
1 parent 9c49684 commit 1437824

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/regress/pg_regress.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,7 @@ run_schedule(const char *schedule, test_function tfunc)
16901690

16911691
if (num_tests == 1)
16921692
{
1693-
status(_("test %-24s ... "), tests[0]);
1693+
status(_("test %-28s ... "), tests[0]);
16941694
pids[0] = (tfunc) (tests[0], &resultfiles[0], &expectfiles[0], &tags[0]);
16951695
wait_for_tests(pids, statuses, NULL, 1);
16961696
/* status line is finished below */
@@ -1741,7 +1741,7 @@ run_schedule(const char *schedule, test_function tfunc)
17411741
bool differ = false;
17421742

17431743
if (num_tests > 1)
1744-
status(_(" %-24s ... "), tests[i]);
1744+
status(_(" %-28s ... "), tests[i]);
17451745

17461746
/*
17471747
* Advance over all three lists simultaneously.
@@ -1835,7 +1835,7 @@ run_single_test(const char *test, test_function tfunc)
18351835
*tl;
18361836
bool differ = false;
18371837

1838-
status(_("test %-24s ... "), test);
1838+
status(_("test %-28s ... "), test);
18391839
pid = (tfunc) (test, &resultfiles, &expectfiles, &tags);
18401840
wait_for_tests(&pid, &exit_status, NULL, 1);
18411841

0 commit comments

Comments
 (0)