Make output width consistent for all ways of invoking a regression test
authorPeter Eisentraut <[email protected]>
Sat, 4 Dec 2010 15:34:48 +0000 (17:34 +0200)
committerPeter Eisentraut <[email protected]>
Sat, 4 Dec 2010 15:34:48 +0000 (17:34 +0200)
run_schedule() and run_single_test() were using different output widths, which
would show up in bigcheck/bigtest, for example.

src/test/regress/pg_regress.c

index ab2f69ecf038ff544ce7677ff55dd165b49786dc..84aff941f940cee0a34a3d9619d03bfb99ed030c 100644 (file)
@@ -1674,7 +1674,7 @@ run_single_test(const char *test, test_function tfunc)
               *tl;
    bool        differ = false;
 
-   status(_("test %-20s ... "), test);
+   status(_("test %-24s ... "), test);
    pid = (tfunc) (test, &resultfiles, &expectfiles, &tags);
    wait_for_tests(&pid, &exit_status, NULL, 1);