mariadb/mysql-test/collections
2011-05-26 12:35:46 +05:30
..
default.daily merge from 5.5 main 2011-03-11 10:12:58 +01:00
default.experimental Bug#11759877 - Bug closed. Remove test from experimental group 2011-05-26 12:35:46 +05:30
default.push Bug #11766640 (59789) Hook the invocation of unit tests in MTR. 2011-02-21 13:56:43 +01:00
default.release Combine test-bt and test-bt-debug into a single default.release 2011-02-09 19:41:12 +00:00
default.weekly Skip the tests listed in disabled-weekly.list 2011-03-10 09:54:16 +05:30
disabled-daily.list Bug#11769332 : Disable in daily runs till the bug is fixed. These tests crash the server abd can lead to cdb hang on windows 2011-03-03 11:52:52 +05:30
disabled-per-push.list WL#5408: Reduce Pushbuild2 turnaround times for rpl suite. 2010-06-02 13:24:55 +01:00
disabled-weekly.list Bug#11769332 : These tests crash on windows which leads to cdb hang. This results in very long runtime. Disable till the bug is fixed 2011-03-03 12:18:04 +05:30
README bug#42888: Add collections of test runs to make it both configurable and 2009-02-24 11:42:11 +01:00
README.experimental Bug #58896 MTR should recognise combinations as experimental without needing wildcards 2011-01-11 10:53:22 +01:00

This directory contains collections of test runs that we run during our
integration and release testing. Each file contains zero or more lines,
with one invocation of mysql-test-run.pl on each. These invocations are
written so that, with the assumption that perl is in your search path,
any collection can run as a shell script or a batch file, with the parent
mysql-test directory being the current working directory.

During integration testing, we choose the collection to run by following
these steps:

1) We choose the extension to look for, based on these rules:
   - If we're running a per-push test, we choose ".push" as the extension.
   - If we're running a daily test, we choose ".daily" as the extension.
   - If we're running a weekly test, we choose ".weekly" as the extension.

2) If there is a collection that has the same name as the branch we're
   testing plus the extension as determined in step 1, we choose that
   collection.

3) If the branch is unknown or we have removed all characters from it
   and still not found a matching collection, we choose the name "default"
   plus the extension determined in step 1. If there is no such file,
   we give up and don't test anything at all.

4) If we haven't found a collection yet, we remove the last character from 
   the branch name and go back to step 2.

5) The commands from the collection are run line by line via execv() or
   similar system calls. They are not run as a shell script. Shell 
   expansions are not guaranteed to work and most likely won't.