mirror of
https://github.com/MariaDB/server.git
synced 2025-09-22 00:55:30 +02:00

and *never* disable tests in suite.pm based on $::opt_big_test, this will make the test skipped both as too big (for ./mtr) and as too small (for ./mtr --big --big).
11 lines
203 B
Perl
11 lines
203 B
Perl
package My::Suite::Spider;
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
return "No Spider engine" unless $ENV{HA_SPIDER_SO};
|
|
return "Not run for embedded server" if $::opt_embedded_server;
|
|
|
|
sub is_default { 1 }
|
|
|
|
bless { };
|
|
|