mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Merge work:/home/bk/mysql
into mysql.sashanet.com:/home/sasha/src/bk/mysql
This commit is contained in:
commit
e023159c0c
3 changed files with 22 additions and 0 deletions
|
@ -1 +1,2 @@
|
|||
mwagner@evoq.home.mwagner.org
|
||||
sasha@mysql.sashanet.com
|
||||
|
|
12
repl-tests/README
Normal file
12
repl-tests/README
Normal file
|
@ -0,0 +1,12 @@
|
|||
This directory contains a set of test cases for replication. To get it
|
||||
to work on your system, install this version of MySQL on the master and on
|
||||
the slave, configure them according to the Replication HOWTO in the manual,
|
||||
modify include/master-slave.inc to specify correct connection parameters
|
||||
for the master and the slave and do
|
||||
|
||||
sh run-all-tests
|
||||
|
||||
If you would like to add your own test case, create a directory
|
||||
test-your-test-case-name, write your own run.test following the examples
|
||||
in the other test cases. Note that you can create the files containing
|
||||
the expected output ( master files) by running mysql-test --record < run.test
|
9
repl-tests/run-all-tests
Executable file
9
repl-tests/run-all-tests
Executable file
|
@ -0,0 +1,9 @@
|
|||
#! /bin/sh
|
||||
|
||||
for d in test-*; do
|
||||
cd $d
|
||||
echo -n $d | sed -e s/test-//
|
||||
echo -n "...."
|
||||
../../client/mysql-test $@ < run.test
|
||||
cd ..
|
||||
done
|
Loading…
Reference in a new issue