diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-01-09 15:12:17 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-02-10 10:21:18 +0100 |
commit | e109a662c77ec8f6db42c940d6c82c00d2f9f5d9 (patch) | |
tree | c113c6b13dbb881972c7a7501670cecad649fb10 /mysql-test/suite.pm | |
parent | f3da18f635f43fdd4438213750ee97af74400ec0 (diff) | |
download | mariadb-git-e109a662c77ec8f6db42c940d6c82c00d2f9f5d9.tar.gz |
mtr check for openssl support for AES_CTR
Diffstat (limited to 'mysql-test/suite.pm')
-rw-r--r-- | mysql-test/suite.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite.pm b/mysql-test/suite.pm index b063f32c506..8101173b508 100644 --- a/mysql-test/suite.pm +++ b/mysql-test/suite.pm @@ -66,6 +66,10 @@ sub skip_combinations { unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/ and $1 ge "1.0.1"; + $skip{'include/have_openssl_ctr.inc'} = 'no or too old openssl' + unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/ + and $1 ge "1.0.1"; + %skip; } |