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/example | |
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/example')
-rw-r--r-- | storage/example/mysql-test/mtr/suite.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/storage/example/mysql-test/mtr/suite.pm b/storage/example/mysql-test/mtr/suite.pm new file mode 100644 index 00000000000..f7ff42241fe --- /dev/null +++ b/storage/example/mysql-test/mtr/suite.pm @@ -0,0 +1,8 @@ +package My::Suite::MTR::Example; + +@ISA = qw(My::Suite); + +sub skip_combinations {( + 't/combs.combinations' => [ 'c1' ], +)} +bless { }; |