mariadb/storage/tokudb/mysql-test
2019-02-21 14:40:52 +01:00
..
rpl Merge 10.3 into 10.4 2018-12-18 11:33:53 +02:00
tokudb Merge branch '10.4' into bb-10.4-mdev7486 2019-02-19 03:18:17 -08:00
tokudb_add_index
tokudb_alter_table MDEV-16188 Post merge fixes: more for TokuDB 2019-02-08 12:32:31 -08:00
tokudb_backup 5.6.36-82.1 2017-08-03 11:48:44 +03:00
tokudb_bugs Merge branch '10.3' into 10.4 2019-02-21 14:40:52 +01:00
tokudb_mariadb MDEV-16188 Post merge fixes: more for TokuDB 2019-02-08 12:32:31 -08:00
tokudb_parts Fix test result differences 2019-01-07 07:38:56 +02:00
tokudb_perfschema 5.6.38-83.0 2018-01-23 19:20:10 +02:00
tokudb_rpl Move deletion of old GTID rows to slave background thread 2018-12-07 07:10:40 +01:00
tokudb_sys_vars
README.tokudb

The MySQL tests for TokuDB are divided into common tests and tests specific to a
particular MySQL distribution.

The tests that are common for all MySQL distributions can be found in the
svn:tokudb/mysql/tests/mysql-test directory.

The tests that are specific to a particular distribution can be found in that
distribution's mysql-test directory.  For example, tests that are specific to
MySQL 5.5.21 are found in the svn:tokudb/mysql.com/mysql-5.5.21/mysql-test directory.

When we run tests on a particular MySQL distribution, we run the union of the common
tests and the tests that are in that distributions mysql-test directory.  The union
is formed by overlaying the common tests with the distribution specific tests.  

Here is an example.  There are a bunch of alter table tests in that should be common
to all MySQL distributions.  These tests are in the 
svn:tokudb/mysql/tests/mysql-test/suite/tokudb.alter_table directory.
However, the ai_di.test has behaviour that is different on MySQL 5.5 than previous 
MySQL distributions.  There is another version of this test in the MySQL 5.5.21 source
directory.  This version replaces the common test since it has the same test name.

It is easy to disable a test.  Just add the test name to the "disabled.def" file in the
test directory.

We use the run.mysql.tests.bash script from the mysql/scripts directory to run the tests.