Skip to content

Commit

Permalink
Mark spider tests big
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Sergey Vojtovich committed Nov 17, 2016
1 parent 7072ca1 commit e1caf31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions storage/spider/mysql-test/spider/bg/suite.pm
Expand Up @@ -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 { };

1 change: 1 addition & 0 deletions storage/spider/mysql-test/spider/suite.pm
Expand Up @@ -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 }

Expand Down

0 comments on commit e1caf31

Please sign in to comment.