Przeglądaj źródła

Output a dot for each Postgres connection attempt

Mike Dillon 10 lat temu
rodzic
commit
393aa53b54

+ 1 - 0
test/tests/postgres-basics/run.sh

@@ -35,6 +35,7 @@ while ! echo 'SELECT 1' | psql &> /dev/null; do
 		echo 'SELECT 1' | psql # to hopefully get a useful error message
 		false
 	fi
+	echo >&2 -n .
 	sleep "$POSTGRES_TEST_SLEEP"
 done
 

+ 1 - 0
test/tests/postgres-initdb/run.sh

@@ -44,6 +44,7 @@ while ! echo 'SELECT 1' | psql &> /dev/null; do
 		echo 'SELECT 1' | psql # to hopefully get a useful error message
 		false
 	fi
+	echo >&2 -n .
 	sleep "${POSTGRES_TEST_SLEEP}"
 done