From 21cb18f7ef0b0ed401bc989f037767cc08b047b7 Mon Sep 17 00:00:00 2001 From: Lukas Braun <lukas.braun@fau.de> Date: Wed, 17 May 2017 14:39:43 +0200 Subject: [PATCH] test_pg.sh: start server while compiling --- test_pg.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test_pg.sh b/test_pg.sh index 7fcb943..48e95b4 100644 --- a/test_pg.sh +++ b/test_pg.sh @@ -2,6 +2,8 @@ set -eu +go test -c & + # Try to find a Postgres installation (Debian installs PG commands to their own dir) if ! which pg_ctl >/dev/null 2>/dev/null; then pg_path=$(echo /usr/lib/postgresql/*/bin | grep -vF '*' | head -1) @@ -47,4 +49,10 @@ done export PGHOST="$PGHOST" createdb goatherd_test -DB_DRIVER=postgres DB_URL="host=$PGHOST dbname=goatherd_test" go test "$@" +echo Waiting for compile to finish +wait + +echo +echo ===== Tests ===== + +DB_DRIVER=postgres DB_URL="host=$PGHOST dbname=goatherd_test" ./goatherd.test "$@" -- GitLab