2012-02-07 16:22:36 +01:00
|
|
|
package My::Suite::Main;
|
2012-02-23 09:24:11 +01:00
|
|
|
use My::Platform;
|
2012-02-07 16:22:36 +01:00
|
|
|
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
|
|
|
|
sub skip_combinations {
|
|
|
|
my @combinations;
|
|
|
|
|
2012-02-23 07:50:11 +01:00
|
|
|
# disable innodb/xtradb combinatons for configurations that were not built
|
2012-02-07 16:22:36 +01:00
|
|
|
push @combinations, 'innodb_plugin' unless $ENV{HA_INNODB_SO};
|
|
|
|
push @combinations, 'xtradb_plugin' unless $ENV{HA_XTRADB_SO};
|
|
|
|
push @combinations, 'xtradb' unless $::mysqld_variables{'innodb'} eq "ON";
|
|
|
|
|
2012-02-23 09:18:48 +01:00
|
|
|
my %skip = ( 'include/have_innodb.combinations' => [ @combinations ],
|
|
|
|
'include/have_xtradb.combinations' => [ @combinations ]);
|
2012-02-23 07:50:11 +01:00
|
|
|
|
2012-02-23 09:24:11 +01:00
|
|
|
# don't run tests for the wrong platform
|
|
|
|
$skip{'include/platform.combinations'} = [ (IS_WINDOWS) ? 'unix' : 'win' ];
|
|
|
|
|
2012-02-23 07:50:11 +01:00
|
|
|
# as a special case, disable certain include files as a whole
|
|
|
|
$skip{'include/not_embedded.inc'} = 'Not run for embedded server'
|
|
|
|
if $::opt_embedded_server;
|
|
|
|
|
|
|
|
$skip{'include/have_debug.inc'} = 'Requires debug build'
|
|
|
|
unless defined $::mysqld_variables{'debug-dbug'};
|
|
|
|
|
|
|
|
$skip{'include/not_windows.inc'} = 'Requires not Windows' if IS_WINDOWS;
|
|
|
|
|
2012-04-17 20:28:21 +02:00
|
|
|
$skip{'t/plugin_loaderr.test'} = 'needs compiled-in innodb'
|
|
|
|
unless $::mysqld_variables{'innodb'} eq "ON";
|
|
|
|
|
2012-02-23 07:50:11 +01:00
|
|
|
# disable tests that use ipv6, if unsupported
|
|
|
|
use Socket;
|
|
|
|
$skip{'include/check_ipv6.inc'} = 'No IPv6'
|
|
|
|
unless socket SOCK, PF_INET6, SOCK_STREAM, getprotobyname('tcp');
|
|
|
|
close SOCK;
|
|
|
|
|
|
|
|
%skip;
|
2012-02-07 16:22:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bless { };
|
|
|
|
|