#!/bin/sh

# some tests insist on /var/run/postgresql/, so run as root

set -e

cleanup () {
	for f in test/sql/*.sql.orig; do
		test -f $f || continue
		mv $f ${f%.orig}
	done
}
trap "cleanup" EXIT HUP INT QUIT PIPE TERM

for v in $(pg_buildext supported-versions); do
	case $v in
		8*|9.0) make sql/plproxy.sql
			;;
		*)	# we want to test the installed extension, so don't source from the build tree
			sed -i.orig 's/\\i.*plproxy\.sql/CREATE EXTENSION plproxy;/' test/sql/*.sql
			;;
	esac

	if ! pg_virtualenv -c '--locale C' -i '--auth trust' -v $v \
		make -f $PWD/Makefile \
		installcheck PG_CONFIG=/usr/lib/postgresql/$v/bin/pg_config; then
			head -n 500 regression.diffs
			exit 1
	fi

	cleanup
done
