mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
611f91605a
- created binlog_encryption test suite and added it to the default list - moved some tests from rpl, binlog and multisource suites to extra so that they could be re-used in different suites - made minor changes in include files
18 lines
373 B
Perl
18 lines
373 B
Perl
package My::Suite::BinlogEncryption;
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
return "No file key management plugin" unless defined $ENV{FILE_KEY_MANAGEMENT_SO};
|
|
|
|
sub skip_combinations {
|
|
my @combinations;
|
|
|
|
$skip{'encryption_algorithms.combinations'} = [ 'ctr' ]
|
|
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
|
|
and $1 ge "1.0.1";
|
|
|
|
%skip;
|
|
}
|
|
|
|
bless { };
|
|
|