Commit 002a1bd0 authored by Aleksey Midenkov's avatar Aleksey Midenkov

Scripts: use InnoDB in tests, XtraDB disabled

parent 7deb6cb3
...@@ -7,16 +7,15 @@ sub skip_combinations { ...@@ -7,16 +7,15 @@ sub skip_combinations {
my @combinations; my @combinations;
# disable innodb/xtradb combinatons for configurations that were not built # disable innodb/xtradb combinatons for configurations that were not built
push @combinations, 'innodb_plugin' unless $ENV{HA_INNODB_SO}; push @combinations, 'innodb_plugin'; # unless $ENV{HA_INNODB_SO};
push @combinations, qw(xtradb innodb) unless $::mysqld_variables{'innodb'} eq "ON"; # if something is compiled in, it's xtradb. innodb is MODULE_ONLY:
push @combinations, 'xtradb'; # unless $::mysqld_variables{'innodb'} eq "ON";
# unconditionally, for now in 10.2. Later it could check for xtradb I_S plugins # push @combinations, 'innodb';
push @combinations, 'xtradb';
# XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server # XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server
push @combinations, 'xtradb_plugin' if not $ENV{HA_XTRADB_SO} push @combinations, 'xtradb_plugin'; # if not $ENV{HA_XTRADB_SO}
or $::opt_embedded_server; # or $::opt_embedded_server;
my %skip = ( 'include/have_innodb.combinations' => [ @combinations ], my %skip = ( 'include/have_innodb.combinations' => [ @combinations ],
'include/have_xtradb.combinations' => [ @combinations ]); 'include/have_xtradb.combinations' => [ @combinations ]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment