diff options
author | Jacob Mathew <jacob.mathew@mariadb.com> | 2017-06-30 16:17:29 -0700 |
---|---|---|
committer | Jacob Mathew <jacob.mathew@mariadb.com> | 2017-06-30 16:17:29 -0700 |
commit | 806d4e3127b8ceac4e1517139d40be0a9f85822f (patch) | |
tree | f2c6124f057ca0723303a777108a19310d6b5b07 /storage/spider | |
parent | d38b15de65c9a78aae09fe34238cd4700c88fea9 (diff) | |
download | mariadb-git-806d4e3127b8ceac4e1517139d40be0a9f85822f.tar.gz |
Run spider mtr suites in 10.1 only on demand.
Diffstat (limited to 'storage/spider')
-rw-r--r-- | storage/spider/mysql-test/spider/bg/suite.pm | 1 | ||||
-rw-r--r-- | storage/spider/mysql-test/spider/suite.pm | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/spider/mysql-test/spider/bg/suite.pm b/storage/spider/mysql-test/spider/bg/suite.pm index 5569c57bec9..1bb6d7592c8 100644 --- a/storage/spider/mysql-test/spider/bg/suite.pm +++ b/storage/spider/mysql-test/spider/bg/suite.pm @@ -4,6 +4,7 @@ package My::Suite::Spider; return "No Spider engine" unless $ENV{HA_SPIDER_SO}; return "Not run for embedded server" if $::opt_embedded_server; +return "Test needs --big-test" unless $::opt_big_test; bless { }; diff --git a/storage/spider/mysql-test/spider/suite.pm b/storage/spider/mysql-test/spider/suite.pm index 171fa6c4f01..1bb6d7592c8 100644 --- a/storage/spider/mysql-test/spider/suite.pm +++ b/storage/spider/mysql-test/spider/suite.pm @@ -4,8 +4,7 @@ package My::Suite::Spider; return "No Spider engine" unless $ENV{HA_SPIDER_SO}; return "Not run for embedded server" if $::opt_embedded_server; - -sub is_default { 1 } +return "Test needs --big-test" unless $::opt_big_test; bless { }; |