~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/collections/README.experimental

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
The .experimental files in this directory contain names of test cases that
 
2
are still in development and whose failures should be considered expected,
 
3
instead of regressions.
 
4
 
 
5
These files are to be used with the --experimental option of 
 
6
mysql-test-run.pl. Please look at its help screen for usage information.
 
7
 
 
8
The syntax is as follows:
 
9
 
 
10
1) One line per test case.
 
11
 
 
12
2) Empty lines and lines starting with a hash (#) are ignored.
 
13
 
 
14
3) If any other line contains a blank followed by a hash (#), the hash 
 
15
   and any subsequent characters are ignored.
 
16
 
 
17
4) The full test case name including the suite and execution mode
 
18
   must be specified, for example:
 
19
        main.alias 'row'     # bug#00000
 
20
 
 
21
5) As an exception to item 4, the last character of the test case
 
22
   specification may be an asterisk (*). In that case, all test cases that
 
23
   start with the same characters up to the last letter before the asterisk
 
24
   are considered experimental:
 
25
        main.a*  # get rid of main.alias, main.alibaba and main.agliolio
 
26
 
 
27
6) Optionally, the test case may be followed by one or more platform
 
28
   qualifiers beginning with @ or @!. The test will then be considered
 
29
   experimental only/except on that platform. Basic OS names as
 
30
   reported by $^O in Perl, or 'windows' are supported, this includes
 
31
   solaris, linux, windows, aix, darwin, ...  Example:
 
32
        main.alias  @aix @windows    # Fails on those