Hi,

test deadlock-simple              ... ok           20 ms
test deadlock-hard                ... ok        10624 ms
test deadlock-soft                ... ok          147 ms
test deadlock-soft-2              ... ok         5154 ms
test deadlock-parallel            ... ok          132 ms
test detach-partition-concurrently-1 ... ok          553 ms
test detach-partition-concurrently-2 ... ok          234 ms
test detach-partition-concurrently-3 ... ok         2389 ms
test detach-partition-concurrently-4 ... ok         1876 ms

Any objections to making these new tests line up with the rest?
From 129b4a7c7993508d09718cb5ca326ab0db6af342 Mon Sep 17 00:00:00 2001
From: Thomas Munro <thomas.munro@gmail.com>
Date: Wed, 9 Jun 2021 13:31:38 +1200
Subject: [PATCH] Adjust pg_regress output for long test names.

Make the test output visually consistent, as previously done by commit
14378245.
---
 src/test/regress/pg_regress.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index e04d365258..20ea07dc0f 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -1738,7 +1738,7 @@ run_schedule(const char *schedule, test_start_function startfunc,
 
 		if (num_tests == 1)
 		{
-			status(_("test %-28s ... "), tests[0]);
+			status(_("test %-32s ... "), tests[0]);
 			pids[0] = (startfunc) (tests[0], &resultfiles[0], &expectfiles[0], &tags[0]);
 			INSTR_TIME_SET_CURRENT(starttimes[0]);
 			wait_for_tests(pids, statuses, stoptimes, NULL, 1);
@@ -1794,7 +1794,7 @@ run_schedule(const char *schedule, test_start_function startfunc,
 			bool		differ = false;
 
 			if (num_tests > 1)
-				status(_("     %-28s ... "), tests[i]);
+				status(_("     %-32s ... "), tests[i]);
 
 			/*
 			 * Advance over all three lists simultaneously.
@@ -1893,7 +1893,7 @@ run_single_test(const char *test, test_start_function startfunc,
 			   *tl;
 	bool		differ = false;
 
-	status(_("test %-28s ... "), test);
+	status(_("test %-32s ... "), test);
 	pid = (startfunc) (test, &resultfiles, &expectfiles, &tags);
 	INSTR_TIME_SET_CURRENT(starttime);
 	wait_for_tests(&pid, &exit_status, &stoptime, NULL, 1);
-- 
2.30.2

Reply via email to