2014-05-02 16:34:01 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2014-05-27 20:18:06 +02:00
|
|
|
# This file is part of the phpBB Forum Software package.
|
|
|
|
#
|
|
|
|
# @copyright (c) phpBB Limited <https://www.phpbb.com>
|
|
|
|
# @license GNU General Public License, version 2 (GPL-2.0)
|
|
|
|
#
|
|
|
|
# For full copyright and license information, please see
|
|
|
|
# the docs/CREDITS.txt file.
|
2014-05-02 16:34:01 +02:00
|
|
|
#
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
DB=$1
|
|
|
|
TRAVIS_PHP_VERSION=$2
|
2015-09-28 17:40:24 +02:00
|
|
|
NOTESTS=$3
|
|
|
|
|
|
|
|
if [ "$NOTESTS" == '1' ]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
2014-05-02 16:34:01 +02:00
|
|
|
|
|
|
|
if [ "$DB" == "postgres" ]
|
|
|
|
then
|
|
|
|
psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres
|
|
|
|
psql -c 'create database phpbb_tests;' -U postgres
|
|
|
|
fi
|
|
|
|
|
2017-07-26 12:24:57 -07:00
|
|
|
if [ "$TRAVIS_PHP_VERSION" == "5.6" -a "$DB" == "mysqli" ]
|
2014-05-02 16:34:01 +02:00
|
|
|
then
|
|
|
|
mysql -e 'SET GLOBAL storage_engine=MyISAM;'
|
|
|
|
fi
|
|
|
|
|
2019-10-06 12:07:35 +02:00
|
|
|
if [ "$DB" == "mysqli" -o "$DB" == "mariadb" ]
|
2014-05-02 16:34:01 +02:00
|
|
|
then
|
|
|
|
mysql -e 'create database IF NOT EXISTS phpbb_tests;'
|
|
|
|
fi
|