#!/bin/sh

echo 1..1 # Number of tests to be executed.

CEGOBRIDGE=../src/cegobridge

$CEGOBRIDGE --dump --dbtype=mysql --mode=import --sqlfile=$srcdir/mysql_sample1.sql --nocasesensitive

if [ $? -ne 0 ]
then
      echo "not ok 1 - Dumping MySQL import failed"
      exit 0
fi

echo "ok 1"

exit 0

