#!/bin/sh

set -e
for v in $(pg_buildext supported-versions); do
#	case $v in
#		8*|9.0) # don't bother to test the extension here
#			continue ;;
#	esac

	PATH=$PATH:/usr/lib/postgresql/$v/bin
	pg_buildext installcheck-$v
done
