diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-11-17 17:36:06 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-11-17 17:36:06 +0400 |
commit | e1caf318b98779cd6c762d1cb4af14970751ccde (patch) | |
tree | d76fd7e51a52a25c80af02a4115a13f13717e67b /storage/spider | |
parent | 7072ca1f5837d1303c51de04a83ab79493929e8b (diff) | |
download | mariadb-git-e1caf318b98779cd6c762d1cb4af14970751ccde.tar.gz |
Mark spider tests big
Due to high memory reqirements spider tests fail often on automated testing
VM's due to rather limited resource allocation.
For example with 10.2 spider needs at least 200M * 8 mysqld instances = 1.6Gb
RAM per mtr instance. With --parallel=4 it needs 6.4Gb, while appropriate hosts
have just 3Gb.
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 | 1 |
2 files changed, 2 insertions, 0 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..f106147deb6 100644 --- a/storage/spider/mysql-test/spider/suite.pm +++ b/storage/spider/mysql-test/spider/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; sub is_default { 1 } |