1f8cff
Improve the documentation that will be installed in the mysql-test RPM.
1f8cff
1f8cff
diff -up mariadb-5.5.32/mysql-test/README.p3 mariadb-5.5.32/mysql-test/README
1f8cff
--- mariadb-5.5.32/mysql-test/README.p3	2013-07-17 16:51:29.000000000 +0200
1f8cff
+++ mariadb-5.5.32/mysql-test/README	2013-07-30 23:22:54.959494478 +0200
1f8cff
@@ -1,15 +1,28 @@
1f8cff
-This directory contains a test suite for the MySQL daemon. To run
1f8cff
-the currently existing test cases, simply execute ./mysql-test-run in
1f8cff
-this directory. It will fire up the newly built mysqld and test it.
1f8cff
-
1f8cff
-Note that you do not have to have to do "make install", and you could
1f8cff
-actually have a co-existing MySQL installation. The tests will not
1f8cff
-conflict with it. To run the test suite in a source directory, you
1f8cff
-must do make first.
1f8cff
-
1f8cff
-All tests must pass. If one or more of them fail on your system, please
1f8cff
-read the following manual section for instructions on how to report the
1f8cff
-problem:
1f8cff
+This directory contains a test suite for the MariaDB daemon. To run
1f8cff
+the currently existing test cases, execute ./mysql-test-run in
1f8cff
+this directory.
1f8cff
+
1f8cff
+For use in Red Hat distributions, you should run the script as user mysql,
1f8cff
+who is created with nologin shell however, so the best bet is something like
1f8cff
+       $ su -
1f8cff
+       # cd /usr/share/mysql-test
1f8cff
+       # su -s /bin/bash mysql -c "./mysql-test-run --skip-test-list=rh-skipped-tests.list"
1f8cff
+
1f8cff
+This will use the installed mysql executables, but will run a private copy
1f8cff
+of the server process (using data files within /usr/share/mysql-test),
1f8cff
+so you need not start the mysqld service beforehand.
1f8cff
+
1f8cff
+The "--skip-test-list=rh-skipped-tests.list" option excludes tests that are
1f8cff
+known to fail on one or more Red-Hat-supported platforms.  You can omit it
1f8cff
+if you want to check whether such failures occur for you.  Documentation
1f8cff
+about the reasons for omitting such tests can be found in the file
1f8cff
+rh-skipped-tests.list.
1f8cff
+
1f8cff
+To clean up afterwards, remove the created "var" subdirectory, eg
1f8cff
+       # su -s /bin/bash - mysql -c "rm -rf /usr/share/mysql-test/var"
1f8cff
+
1f8cff
+If one or more tests fail on your system, please read the following manual
1f8cff
+section for instructions on how to report the problem:
1f8cff
 
1f8cff
 http://kb.askmonty.org/v/reporting-bugs
1f8cff
 
1f8cff
@@ -26,7 +39,8 @@ other relevant options.
1f8cff
 
1f8cff
 With no test cases named on the command line, mysql-test-run falls back
1f8cff
 to the normal "non-extern" behavior. The reason for this is that some
1f8cff
-tests cannot run with an external server.
1f8cff
+tests cannot run with an external server (because they need to control the
1f8cff
+options with which the server is started).
1f8cff
 
1f8cff
 You can create your own test cases. To create a test case, create a new
1f8cff
 file in the t subdirectory using a text editor. The file should have a .test