diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-04-13 22:18:36 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-04-13 22:47:01 +0200 |
commit | 3e12e39fb3dd0346578d50fe98215f1c6bce354c (patch) | |
tree | dcb9ad2102656687673d4f7d5806645cd2a854fe /mysql-test/suite.pm | |
parent | 2bf355fa812e30a25427c10b13c7db51fd1a1f36 (diff) | |
download | mariadb-git-3e12e39fb3dd0346578d50fe98215f1c6bce354c.tar.gz |
skip innodb-table-online,crypt tests if no encryption plugin
Diffstat (limited to 'mysql-test/suite.pm')
-rw-r--r-- | mysql-test/suite.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite.pm b/mysql-test/suite.pm index cb9ab0c375d..5ac3bd3e138 100644 --- a/mysql-test/suite.pm +++ b/mysql-test/suite.pm @@ -20,6 +20,9 @@ sub skip_combinations { my %skip = ( 'include/have_innodb.combinations' => [ @combinations ], 'include/have_xtradb.combinations' => [ @combinations ]); + $skip{'include/innodb_encrypt_log.combinations'} = [ 'crypt' ] + unless $ENV{DEBUG_KEY_MANAGEMENT_SO}; + # don't run tests for the wrong platform $skip{'include/platform.combinations'} = [ (IS_WINDOWS) ? 'unix' : 'win' ]; |