summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2000-09-18 11:41:11 -0600
committerunknown <sasha@mysql.sashanet.com>2000-09-18 11:41:11 -0600
commitce6b0d07214a07247b413c02d43e96af52819eeb (patch)
tree250ad8ce9746e97b0595a786d6ef883a57c81a3d
parent2159a88cae70b575cb40d69d1e2ed4563646750f (diff)
parent368808cea9bc18d1fb7d44d802e8cae3aff90e13 (diff)
downloadmariadb-git-ce6b0d07214a07247b413c02d43e96af52819eeb.tar.gz
Merge work:/home/bk/mysql
into mysql.sashanet.com:/home/sasha/src/bk/mysql BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
-rw-r--r--BitKeeper/etc/logging_ok1
-rw-r--r--repl-tests/README12
-rwxr-xr-xrepl-tests/run-all-tests9
3 files changed, 22 insertions, 0 deletions
diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok
index c2014d703ba..1a47b9b4364 100644
--- a/BitKeeper/etc/logging_ok
+++ b/BitKeeper/etc/logging_ok
@@ -1 +1,2 @@
mwagner@evoq.home.mwagner.org
+sasha@mysql.sashanet.com
diff --git a/repl-tests/README b/repl-tests/README
new file mode 100644
index 00000000000..62a05e909e9
--- /dev/null
+++ b/repl-tests/README
@@ -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 \ No newline at end of file
diff --git a/repl-tests/run-all-tests b/repl-tests/run-all-tests
new file mode 100755
index 00000000000..bed0ce3f0f0
--- /dev/null
+++ b/repl-tests/run-all-tests
@@ -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 \ No newline at end of file