mariadb/mysql-test/suite/encryption/suite.pm
Sergei Golubchik ab8415d983 move encryption tests to a dedicate suite
remove few tests for variables that never existed (merge error)
2015-05-13 14:27:16 +02:00

16 lines
300 B
Perl

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 { };