diff options
author | Jacob Mathew <jacob.mathew@mariadb.com> | 2017-06-30 15:58:27 -0700 |
---|---|---|
committer | Jacob Mathew <jacob.mathew@mariadb.com> | 2017-06-30 15:58:27 -0700 |
commit | 21689d125282f85123b6807b814683c74e9ea23c (patch) | |
tree | 8c7da1ff33b13b3706a3ae51083b9fe1c6850bee /storage/spider | |
parent | 92928bcdd996da3bc1fd1bbe1147e277e024bf34 (diff) | |
download | mariadb-git-21689d125282f85123b6807b814683c74e9ea23c.tar.gz |
Run spider mtr suites in 10.0 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 { }; |