#!/bin/sh

# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

# see: The MySQL Test Framework :: 7 Creating and Executing Unit Tests
#   (MySQL Cluster Documentation)/mysqltest/en/unit-test.html
# see: Test Anything Protocol (TAP)
#   http://testanything.org/wiki/index.php/Main_Page
#   http://en.wikipedia.org/wiki/Test_Anything_Protocol

# not sure which protocol version we're using
#echo "TAP version 13"

# test range
echo "1..1"

script_dir=`dirname $0`

# log file for output from this script
log="mysql_utils_unit_tests-t.log"
rm -f "$log"
touch "$log"

# run test
echo "running test from directory:" >> "$log" 2>&1
echo "  $script_dir" >> "$log" 2>&1

test_name="test_mysql_utils"
script_name="$script_dir/$test_mysql_utils.sh"

if [ ! -x "$script_name" ];
then
  status="ok 1 # skip $test_name test file missing"
else
  s=""
  $script_name >> "$log" 2>&1
  if [ "$?" -ne "0" ]; then
    s="not "
  fi
  status="${s}ok 1 - $test_name"
fi;

echo "$status" >> "$log" 2>&1
echo "" >> "$log" 2>&1
echo "$status"

echo "done." >> "$log" 2>&1
