Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
002a1bd0
Commit
002a1bd0
authored
Sep 26, 2016
by
Aleksey Midenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scripts: use InnoDB in tests, XtraDB disabled
parent
7deb6cb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
mysql-test/suite.pm
mysql-test/suite.pm
+6
-7
No files found.
mysql-test/suite.pm
View file @
002a1bd0
...
...
@@ -7,16 +7,15 @@ 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
,
'
innodb_plugin
'
;
#
unless $ENV{HA_INNODB_SO};
push
@combinations
,
qw(xtradb innodb)
unless
$::mysqld_variables
{'
innodb
'}
eq
"
ON
";
# unconditionally, for now in 10.2. Later it could check for xtradb I_S plugins
push
@combinations
,
'
xtradb
';
# if something is compiled in, it's xtradb. innodb is MODULE_ONLY:
push
@combinations
,
'
xtradb
';
# unless $::mysqld_variables{'innodb'} eq "ON";
# push @combinations, 'innodb';
# 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
;
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
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment