mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 05:00:45 +00:00
48 lines
1.1 KiB
Bash
Executable File
48 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
err() {
|
|
echo
|
|
for msg; do
|
|
echo $msg
|
|
done
|
|
echo "See http://code.google.com/p/maatkit/wiki/Testing for more information."
|
|
echo
|
|
}
|
|
|
|
# ###########################################################################
|
|
# Sanity check the cmd line options.
|
|
# ###########################################################################
|
|
if [ $# -lt 1 ]; then
|
|
err "Usage: load-sakila-db port"
|
|
exit 1
|
|
fi
|
|
|
|
PORT=$1
|
|
|
|
if [ ! -d "/tmp/$PORT" ]; then
|
|
err "Sandbox does not exist: /tmp/$PORT"
|
|
exit 1
|
|
fi
|
|
|
|
# ###########################################################################
|
|
# Sanity check the environment.
|
|
# ###########################################################################
|
|
if [ -z "$PERCONA_TOOLKIT_BRANCH" ]; then
|
|
err "PERCONA_TOOLKIT_BRANCH environment variable is not set."
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$PERCONA_TOOLKIT_BRANCH" ]; then
|
|
err "Invalid Maakit trunk directory: $PERCONA_TOOLKIT_BRANCH"
|
|
exit 1
|
|
fi
|
|
|
|
cd $PERCONA_TOOLKIT_BRANCH/sandbox
|
|
|
|
/tmp/$PORT/use < sakila-db/sakila-schema.sql
|
|
/tmp/$PORT/use < sakila-db/sakila-data.sql
|
|
|
|
$PERCONA_TOOLKIT_BRANCH/sandbox/test-env reset
|
|
|
|
exit 0
|