13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Used in the Docker image to run tests
|
|
|
|
PGDATA=/var/lib/postgresql/data
|
|
pg_ctl=/usr/lib/postgresql/${PG_MAJOR}/bin/pg_ctl
|
|
"$pg_ctl" "--pgdata=${PGDATA}" start -w
|
|
make installcheck
|
|
"$pg_ctl" "--pgdata=${PGDATA}" stop
|
|
if [ -f regression.diffs ]; then
|
|
cat regression.diffs
|
|
fi
|