1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

support for eval_result and let $var = query syntax in mysql-test

fixes for rpl_log test to make it config-independent
This commit is contained in:
sasha@mysql.sashanet.com
2001-06-30 13:08:35 -06:00
parent 12b442b649
commit ea2e911892
6 changed files with 116 additions and 41 deletions

View File

@ -333,6 +333,13 @@ show_failed_diff ()
{
reject_file=r/$1.reject
result_file=r/$1.result
eval_file=r/$1.eval
if [ -f $eval_file ]
then
result_file=$eval_file
fi
if [ -x "$DIFF" ] && [ -f $reject_file ]
then
echo "Below are the diffs between actual and expected results:"