summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb
Commit message (Collapse)AuthorAgeFilesLines
* Merge XtraDB 8 into MariaDB.unknown2009-11-134-105/+0
|
* Don't test innodb-use-sys-malloc under Valgrind.unknown2009-09-121-0/+3
| | | | | InnoDB does not bother to free explicitly one-time allocations at exit, so we get lots of "still reachable" warnings in Valgrind with innodb-use-sys-malloc enabled.
* Update to innoplug-1.0.4.Sergey Vojtovich2009-07-302-0/+85
|
* This patch implements testing InnoDB plugin milestone.Sergey Vojtovich2009-06-2410-8/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysql-test/lib/mtr_cases.pm: Expand test cases list with test cases to test InnoDB plugin. mysql-test/mysql-test-run.pl: Added "innodb" suite to default list of suites. mysql-test/suite/innodb/include/have_innodb_plugin.inc: This file determines if innodb plugin is available. mysql-test/suite/innodb/my.cnf: Removed temporary my.cnf, which was added for testing. Not needed anymore - options are substituted by mtr. mysql-test/suite/innodb/t/innodb-analyze.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-timeout.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-use-sys-malloc-master.opt: Use "loose" prefix with mysqld options. This makes this test skipped properly when no innodb is available. mysql-test/suite/innodb/t/innodb-use-sys-malloc.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-zip.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36169.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36172.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_information_schema.test: This test can only be run with InnoDB plugin.
* Make innodb test suite pass with INNODB_PLUGIN.Sergey Vojtovich2009-06-117-2/+18
| | | | | | | | | | | | | | | | | | | mysql-test/suite/innodb/my.cnf: Added temporary my.cnf for initial testing. mysql-test/suite/innodb/t/disabled.def: Disabled innodb-index test until we know how to fix it. An error message appears in the error log, which is likely needs to be suppressed. mysql-test/suite/innodb/t/innodb-analyze.test: Cleanup variables before returning. mysql-test/suite/innodb/t/innodb-index.test: Include file from proper location. mysql-test/suite/innodb/t/innodb-index_ucs2.test: Include file from proper location. mysql-test/suite/innodb/t/innodb_bug36169.test: Cleanup variables before returning. mysql-test/suite/innodb/t/innodb_bug36172.test: Cleanup variables before returning.
* Remove the following tests and include files as they are already inSatya B2009-06-118-202/+2
| | | | | | | | | | | | | | | the mysql test suite. Tests removed: 1. innodb_trx_weight.test 2. innodb_bug35220.test Include files removed: 1. have_innodb.inc 2. ctype_innodb_like.inc 3. innodb_trx_weight.inc Also add the missing opt file for the test innodb-use-sys-malloc.test
* Add innodb plugin tests to a new mysql test suite 'innodb'.Satya B2009-06-1032-0/+4490
Created a test suite 'innodb' under mysql-test/suite/innodb for the innodb plugin tests. test suite 'innodb' has tests only which are not under any other mysql-test suites. Total 14 testcases are added to the test suite. Note: the patches in storage/innodb_plugin/mysql-test/patches are not applied yet