Skip to content

Commit

Permalink
Skip necessary encryption tests if required plugin is not found.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lindström committed Mar 27, 2015
1 parent 50eee60 commit 47c26d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mysql-test/suite.pm
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ sub skip_combinations {
unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
and $1 ge "1.0.1";

$skip{'include/have_example_key_management_plugin.inc'} = 'no example_key_management_plugin'
unless $ENV{EXAMPLE_KEY_MANAGEMENT_PLUGIN_SO};

$skip{'include/have_file_key_management_plugin.inc'} = 'no file_key_management_plugin'
unless $ENV{FILE_KEY_MANAGEMENT_PLUGIN_SO};

%skip;
}

Expand Down

0 comments on commit 47c26d5

Please sign in to comment.