mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-17 01:42:17 +00:00
12 lines
182 B
Bash
Executable File
12 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
if [ "$MYSQL_SKIP_DB_SETUP" != "1" ]
|
|
then
|
|
mysql -u root < $SCRIPTPATH/db_setup.sql
|
|
fi
|
|
|
|
./mysql_integrationtests |