commit 6d65457203419b601eacca3dee59a290b9718b62
parent 0ec3301cfb26e3d5f741389ab2f1f99068b6ed17
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 24 Dec 2019 22:32:02 +0100
tolerate database not existing, skip test
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/pq/test_pq.c b/src/pq/test_pq.c
@@ -186,6 +186,8 @@ main (int argc,
conn = GNUNET_PQ_connect ("postgres:///talercheck",
es,
NULL);
+ if (NULL == conn)
+ return 77;
if (GNUNET_OK !=
postgres_prepare (conn))
{