mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
overlay support for mysql-test-run and mysqltest
mysql-test-run auto-disables all optional plugins. mysql-test/include/default_client.cnf: no @OPT.plugindir anymore mysql-test/include/default_mysqld.cnf: don't disable plugins manually - mtr can do it better mysql-test/suite/innodb/t/innodb_bug47167.test: mtr now uses suite-dir as an include path mysql-test/suite/innodb/t/innodb_file_format.test: mtr now uses suite-dir as an include path mysql-test/t/partition_binlog.test: this test uses partitions storage/example/mysql-test/mtr/t/source.result: update results. as mysqltest includes the correct overlayed include storage/innobase/handler/ha_innodb.cc: the assert is wrong
This commit is contained in:
@ -5,12 +5,31 @@ package My::Suite::Main;
|
||||
sub skip_combinations {
|
||||
my @combinations;
|
||||
|
||||
# disable innodb/xtradb combinatons for configurations that were not built
|
||||
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";
|
||||
|
||||
( 'include/have_innodb.combinations' => [ @combinations ] )
|
||||
my %skip = ( 'include/have_innodb.combinations' => [ @combinations ]);
|
||||
|
||||
# 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;
|
||||
|
||||
# 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;
|
||||
}
|
||||
|
||||
|
||||
bless { };
|
||||
|
||||
|
Reference in New Issue
Block a user