Fix for dirty SQL tests

* Fixed an error in the main post-build script which caused dirty SQL
tests to be skipped
This commit is contained in:
Emmanuel BENOîT 2012-01-16 12:50:10 +01:00
parent 74b6f2ab09
commit 24f40c5549

View file

@ -53,6 +53,6 @@ fi
if [ -d user ]; then
pg_prove -U $TEST_USER -d $TEST_DATABASE `find user/ -type f -name '*.sql'` || exit 1
fi
if [ -x dirty/run-dirty-tests.sql ]; then
( cd dirty; exec ./run-dirty-tests.sql ) || exit 1
if [ -x dirty/run-dirty-tests.sh ]; then
( cd dirty; exec ./run-dirty-tests.sh ) || exit 1
fi