summaryrefslogtreecommitdiff
path: root/mysql-test/suite.pm
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@mariadb.com>2020-05-05 18:10:53 +0200
committerSergei Golubchik <serg@mariadb.org>2020-05-08 11:51:03 +0200
commit403dc759d0bc5d045da06fb326cdf59b23084953 (patch)
tree159f9cada54d23a231c81f98fad2f8ef5a912d6e /mysql-test/suite.pm
parent8d85715d507de8937a181e999501e205ff3dca34 (diff)
downloadmariadb-git-403dc759d0bc5d045da06fb326cdf59b23084953.tar.gz
Update WolfSSL
Fix WolfSSL build: - Do not build with TLSv1.0,it stopped working,at least with SChannel client - Disable a test that depends on TLSv1.0 - define FP_MAX_BITS always, to fix 32bit builds. - Increase MAX_AES_CTX_SIZE, to fix build on Linux
Diffstat (limited to 'mysql-test/suite.pm')
-rw-r--r--mysql-test/suite.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite.pm b/mysql-test/suite.pm
index cb30a3186e5..4cf55e3eac8 100644
--- a/mysql-test/suite.pm
+++ b/mysql-test/suite.pm
@@ -74,6 +74,9 @@ sub skip_combinations {
$skip{'main/ssl_verify_ip.test'} = 'x509v3 support required'
unless $openssl_ver ge "1.0.2";
+ $skip{'main/tls_version1.test'} = 'No TLSv1.0 support'
+ if $ssl_lib =~ /WolfSSL/;
+
%skip;
}