mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
1363c9b215
Fixed install breakage (my own fault) Edited exampled cnf to remove bdb references. mysql-test/r/backup.result: fix warnings mysql-test/r/im_options.result: Remove missed bdb skip mysql-test/r/im_utils.result: Remove missed bdb-skip mysql-test/r/log_tables.result: Fix warnings mysql-test/r/show_check.result: Fix warnings mysql-test/r/sp_trans.result: Fix warning mysql-test/r/type_timestamp.result: Fix warning mysql-test/r/warnings.result: Fix warning mysql-test/t/disabled.def: Disabled Federation test mysql-test/t/federated_transactions.test: Fixed comments in federation test netware/mysql_install_db.c: Fix install breakage. netware/mysql_test_run.c: Fix install breakage. scripts/mysql_install_db.sh: Fix install breakage storage/myisam/ftbench/ft-test-run.sh: Fixed test which is never run support-files/my-innodb-heavy-4G.cnf.sh: Modified examples support-files/my-small.cnf.sh: Modified examples
98 lines
2.4 KiB
Bash
Executable file
98 lines
2.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -x ./ft-test-run.sh ] ; then
|
|
echo "Usage: ./ft-test-run.sh"
|
|
exit 1
|
|
fi
|
|
|
|
BASE=`pwd`
|
|
DATA=$BASE/var
|
|
ROOT=`cd ../..; pwd`
|
|
MYSQLD=$ROOT/sql/mysqld
|
|
MYSQL=$ROOT/client/mysql
|
|
MYSQLADMIN=$ROOT/client/mysqladmin
|
|
SOCK=$DATA/mysql.sock
|
|
PID=$DATA/mysql.pid
|
|
H=../ftdefs.h
|
|
OPTS="--no-defaults --socket=$SOCK --character-sets-dir=$ROOT/sql/share/charsets"
|
|
DELAY=10
|
|
|
|
stop_myslqd()
|
|
{
|
|
[ -S $SOCK ] && $MYSQLADMIN $OPTS shutdown
|
|
[ -f $PID ] && kill `cat $PID` && sleep 15 && [ -f $PID ] && kill -9 `cat $PID`
|
|
}
|
|
|
|
if [ ! -d t/BEST ] ; then
|
|
echo "No ./t/BEST directory! Aborting..."
|
|
exit 1
|
|
fi
|
|
rm -f t/BEST/report.txt
|
|
if [ -w $H ] ; then
|
|
echo "$H is writeable! Aborting..."
|
|
exit 1
|
|
fi
|
|
|
|
stop_myslqd
|
|
rm -rf var > /dev/null 2>&1
|
|
mkdir var
|
|
mkdir var/test
|
|
|
|
for batch in t/* ; do
|
|
[ ! -d $batch ] && continue
|
|
[ $batch -ef t/BEST -a $batch != t/BEST ] && continue
|
|
|
|
rm -rf var/test/* > /dev/null 2>&1
|
|
rm -f $H
|
|
if [ -f $BASE/$batch/ftdefs.h ] ; then
|
|
cat $BASE/$batch/ftdefs.h > $H
|
|
chmod a-wx $H
|
|
else
|
|
bk get -q $H
|
|
fi
|
|
OPTS="--defaults-file=$BASE/$batch/my.cnf --socket=$SOCK --character-sets-dir=$ROOT/sql/share/charsets"
|
|
stop_myslqd
|
|
rm -f $MYSQLD
|
|
echo "building $batch"
|
|
echo "============== $batch ===============" >> var/ft_test.log
|
|
(cd $ROOT; gmake) >> var/ft_test.log 2>&1
|
|
|
|
for prog in $MYSQLD $MYSQL $MYSQLADMIN ; do
|
|
if [ ! -x $prog ] ; then
|
|
echo "build failed: no $prog"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "=====================================" >> var/ft_test.log
|
|
$MYSQLD $OPTS --basedir=$BASE --pid-file=$PID \
|
|
--language=$ROOT/sql/share/english \
|
|
--skip-grant-tables --skip-innodb \
|
|
--skip-networking --tmpdir=$DATA >> var/ft_test.log 2>&1 &
|
|
|
|
sleep $DELAY
|
|
$MYSQLADMIN $OPTS ping
|
|
if [ $? != 0 ] ; then
|
|
echo "$MYSQLD refused to start"
|
|
exit 1
|
|
fi
|
|
for test in `cd data; echo *.r|sed "s/\.r//g"` ; do
|
|
if [ -f $batch/$test.out ] ; then
|
|
echo "skipping $batch/$test.out"
|
|
continue
|
|
fi
|
|
echo "testing $batch/$test"
|
|
FT_MODE=`cat $batch/ft_mode 2>/dev/null`
|
|
./Ecreate.pl $test "$FT_MODE" | $MYSQL $OPTS --skip-column-names test >var/$test.eval
|
|
echo "reporting $batch/$test"
|
|
./Ereport.pl var/$test.eval data/$test.r > $batch/$test.out || exit
|
|
done
|
|
stop_myslqd
|
|
rm -f $H
|
|
bk get -q $H
|
|
if [ ! $batch -ef t/BEST ] ; then
|
|
echo "comparing $batch"
|
|
./Ecompare.pl t/BEST $batch >> t/BEST/report.txt
|
|
fi
|
|
done
|
|
|