Skip to content

Commit 002a1bd

Browse files
committed
Scripts: use InnoDB in tests, XtraDB disabled
1 parent 7deb6cb commit 002a1bd

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

mysql-test/suite.pm

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@ sub skip_combinations {
77
my @combinations;
88

99
# disable innodb/xtradb combinatons for configurations that were not built
10-
push @combinations, 'innodb_plugin' unless $ENV{HA_INNODB_SO};
10+
push @combinations, 'innodb_plugin'; # unless $ENV{HA_INNODB_SO};
1111

12-
push @combinations, qw(xtradb innodb) unless $::mysqld_variables{'innodb'} eq "ON";
13-
14-
# unconditionally, for now in 10.2. Later it could check for xtradb I_S plugins
15-
push @combinations, 'xtradb';
12+
# if something is compiled in, it's xtradb. innodb is MODULE_ONLY:
13+
push @combinations, 'xtradb'; # unless $::mysqld_variables{'innodb'} eq "ON";
14+
# push @combinations, 'innodb';
1615

1716
# XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server
18-
push @combinations, 'xtradb_plugin' if not $ENV{HA_XTRADB_SO}
19-
or $::opt_embedded_server;
17+
push @combinations, 'xtradb_plugin'; # if not $ENV{HA_XTRADB_SO}
18+
# or $::opt_embedded_server;
2019

2120
my %skip = ( 'include/have_innodb.combinations' => [ @combinations ],
2221
'include/have_xtradb.combinations' => [ @combinations ]);

0 commit comments

Comments
 (0)