diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-08-01 19:57:36 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-08-01 19:57:36 +0200 |
commit | 6ed4a283fd18a3dbbd7042edb61e12fbd1e3f366 (patch) | |
tree | 8e85e872502f73ea456bf2d290d6e0c86547af71 /storage/myisam | |
parent | bd39599668691415c42ada6022f567a753769a1c (diff) | |
download | mariadb-git-6ed4a283fd18a3dbbd7042edb61e12fbd1e3f366.tar.gz |
MDEV-399 Combinations defined in the base suite cannot be skipped by overlay
When appliying parent combinations to the overlay,
filter them through the %skip_combinations using the overlayed filename
Diffstat (limited to 'storage/myisam')
-rw-r--r-- | storage/myisam/mysql-test/mtr2/suite.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/storage/myisam/mysql-test/mtr2/suite.pm b/storage/myisam/mysql-test/mtr2/suite.pm new file mode 100644 index 00000000000..0f287e4a8ba --- /dev/null +++ b/storage/myisam/mysql-test/mtr2/suite.pm @@ -0,0 +1,9 @@ +package My::Suite::MTR2::MyISAM; + +@ISA = qw(My::Suite); + +sub skip_combinations {( + 'combinations' => [ '1st' ], +)} +bless { }; + |