mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
move encryption tests to a dedicate suite
remove few tests for variables that never existed (merge error)
This commit is contained in:
16
mysql-test/suite/encryption/suite.pm
Normal file
16
mysql-test/suite/encryption/suite.pm
Normal file
@@ -0,0 +1,16 @@
|
||||
package My::Suite::Encryption;
|
||||
|
||||
@ISA = qw(My::Suite);
|
||||
|
||||
sub skip_combinations {
|
||||
my @combinations;
|
||||
|
||||
$skip{'include/have_file_key_management_plugin.combinations'} = [ 'ctr' ]
|
||||
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
|
||||
and $1 ge "1.0.1";
|
||||
|
||||
%skip;
|
||||
}
|
||||
|
||||
bless { };
|
||||
|
||||
Reference in New Issue
Block a user