1
0
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:
unknown
2006-09-22 20:58:16 +02:00
parent 72633b36ac
commit c84223043b
2 changed files with 29 additions and 0 deletions

View File

@ -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