mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
mysql-test:
* rename "xtradb" combination to be called "innodb" * disable xtradb_plugin embedded tests (because of RECOMPILE_FOR_EMBEDDED)
This commit is contained in:
@ -8,8 +8,14 @@ sub skip_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";
|
||||
|
||||
# if something is compiled in, it's innodb. xtradb is MODULE_ONLY:
|
||||
push @combinations, 'innodb' unless $::mysqld_variables{'innodb'} eq "ON";
|
||||
push @combinations, 'xtradb';
|
||||
|
||||
# XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server
|
||||
push @combinations, 'xtradb_plugin' if not $ENV{HA_XTRADB_SO}
|
||||
or $::opt_embedded_server;
|
||||
|
||||
my %skip = ( 'include/have_innodb.combinations' => [ @combinations ],
|
||||
'include/have_xtradb.combinations' => [ @combinations ]);
|
||||
|
Reference in New Issue
Block a user