mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-16 09:52:54 +00:00
7 lines
308 B
Bash
Executable File
7 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
cd "$(dirname ${0})"
|
|
dropdb --if-exist contrib_regression
|
|
createdb contrib_regression
|
|
PG_REGRESS=$(dirname "$(pg_config --pgxs)")/../test/regress/pg_regress
|
|
${PG_REGRESS} --use-existing --inputdir=./ --bindir='/usr/local/pgsql/bin' --inputdir=test --dbname=contrib_regression base corpus |