Blame tests/p_mysql/mysqld_create_db.sh
|
Karanbir Singh |
0b5bb2 |
#!/bin/sh
|
|
Karanbir Singh |
0b5bb2 |
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
Karanbir Singh |
0b5bb2 |
|
|
Karanbir Singh |
0b5bb2 |
echo -n "MySQL create database test: "
|
|
Karanbir Singh |
0b5bb2 |
mysql -u root -e 'create database mysql_test' > /dev/null 2>&1
|
|
Karanbir Singh |
0b5bb2 |
if [ $? -eq 0 ]; then
|
|
Karanbir Singh |
0b5bb2 |
echo 'PASS'
|
|
Karanbir Singh |
0b5bb2 |
else
|
|
Karanbir Singh |
0b5bb2 |
echo 'FAIL'
|
|
Karanbir Singh |
0b5bb2 |
exit 1
|
|
Karanbir Singh |
0b5bb2 |
fi
|