summaryrefslogtreecommitdiff
path: root/storage/example
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2012-08-01 19:57:36 +0200
committerSergei Golubchik <sergii@pisem.net>2012-08-01 19:57:36 +0200
commit6ed4a283fd18a3dbbd7042edb61e12fbd1e3f366 (patch)
tree8e85e872502f73ea456bf2d290d6e0c86547af71 /storage/example
parentbd39599668691415c42ada6022f567a753769a1c (diff)
downloadmariadb-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.pm8
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 { };