mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
Skip innodb test if mysqld doesn't have innodb support
This commit is contained in:
parent
7596e12bbe
commit
5decebc5f3
1 changed files with 12 additions and 0 deletions
|
@ -554,6 +554,18 @@ sub collect_one_test_case($$$$$$$) {
|
|||
}
|
||||
}
|
||||
|
||||
if ( $tinfo->{'innodb_test'} )
|
||||
{
|
||||
# This is a test that need inndob
|
||||
if ( $::mysqld_variables{'innodb'} eq "FALSE" )
|
||||
{
|
||||
# innodb is not supported, skip it
|
||||
$tinfo->{'skip'}= 1;
|
||||
$tinfo->{'comment'}= "No innodb support";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue