summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/encryption/suite.pm
blob: bfd7ec716496a3501d8d10bb1eac025cf4bb63b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 { };