Commit 47c26d5a authored by Jan Lindström's avatar Jan Lindström

Skip necessary encryption tests if required plugin is not found.

parent 50eee605
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment