mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Immediately skip tests that need innodb if mysqld does not support it
mysql-test/lib/mtr_cases.pl: immediately skip tests that need innodb if mysqld does not support it mysql-test/mysql-test-run.pl: Check if innodb is supported
This commit is contained in:
@ -503,6 +503,13 @@ sub collect_one_test_case($$$$$$$) {
|
||||
$tinfo->{'skip'}= 1;
|
||||
$tinfo->{'comment'}= "Test need debug binaries";
|
||||
}
|
||||
|
||||
if ( $tinfo->{'innodb_test'} && ! $::glob_innodb_supported )
|
||||
{
|
||||
$tinfo->{'skip'}= 1;
|
||||
$tinfo->{'comment'}= "Test need innodb";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
# We can't restart a running server that may be in use
|
||||
|
Reference in New Issue
Block a user