[autotest.sh] use the DATABASEHOST for the mysql DB drop

This commit is contained in:
Morris Jobke 2015-04-10 14:46:08 +02:00
parent 75312f96d4
commit c72ea81137
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ function execute_tests {
# drop database
if [ "$1" == "mysql" ] ; then
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE IF EXISTS $DATABASENAME" || true
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE IF EXISTS $DATABASENAME" -h $DATABASEHOST || true
fi
if [ "$1" == "pgsql" ] ; then
dropdb -U $DATABASEUSER $DATABASENAME || true