1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

tests: postgresql: Fix it.

This is a follow-up of c311147bd1.

* gnu/tests/databases.scm (run-postgresql-test): Use "/tmp" as database host.
This commit is contained in:
Mathieu Othacehe
2021-04-13 19:26:39 +02:00
parent ea89fcb0da
commit c51ffa784e

View File

@@ -233,7 +233,7 @@
(let* ((port (open-pipe*
OPEN_READ
#$(file-append postgresql "/bin/psql")
"-tAh" "/var/run/postgresql"
"-tAh" "/tmp"
"-c" "SELECT 1 FROM pg_database WHERE
datname='root'"))
(output (get-string-all port)))