Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
4bfb19d4
Commit
4bfb19d4
authored
Jun 17, 2019
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: mtr suite.pm ssl checks
parent
4bad6aa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
18 deletions
+13
-18
mysql-test/suite.pm
mysql-test/suite.pm
+13
-18
No files found.
mysql-test/suite.pm
View file @
4bfb19d4
...
...
@@ -22,6 +22,9 @@ sub skip_combinations {
$skip
{'
include/maybe_debug.combinations
'}
=
[
defined
$::mysqld_variables
{'
debug-dbug
'}
?
'
release
'
:
'
debug
'
];
$skip
{'
include/have_debug.inc
'}
=
'
Requires debug build
'
unless
defined
$::mysqld_variables
{'
debug-dbug
'};
# and for the wrong word size
# check for exact values, in case the default changes to be small everywhere
my
$longsysvar
=
$::mysqld_variables
{'
max-binlog-stmt-cache-size
'};
...
...
@@ -36,13 +39,6 @@ sub skip_combinations {
$skip
{'
include/not_embedded.inc
'}
=
'
Not run for embedded server
'
if
$::opt_embedded_server
;
$skip
{'
include/have_debug.inc
'}
=
'
Requires debug build
'
unless
defined
$::mysqld_variables
{'
debug-dbug
'};
$skip
{'
include/have_ssl_communication.inc
'}
=
$skip
{'
include/have_ssl_crypto_functs.inc
'}
=
'
Requires SSL
'
unless
defined
$::mysqld_variables
{'
ssl-ca
'};
$skip
{'
include/have_example_plugin.inc
'}
=
'
Need example plugin
'
unless
$ENV
{
HA_EXAMPLE_SO
};
...
...
@@ -62,22 +58,21 @@ sub skip_combinations {
}
$skip
{'
include/check_ipv6.inc
'}
=
'
No IPv6
'
unless
ipv6_ok
();
$skip
{'
main/openssl_6975.test
'}
=
'
no or wrong openssl version
'
unless
$::mysqld_variables
{'
version-ssl-library
'}
=~
/OpenSSL (\S+)/
and
$1
ge
"
1.0.1d
"
and
$1
lt
"
1.1.1
";
# SSL is complicated
my
$ssl_lib
=
$::mysqld_variables
{'
version-ssl-library
'};
my
$openssl_ver
=
$ssl_lib
=~
/OpenSSL (\S+)/
?
$1
:
"
";
sub
x509v3_ok
()
{
return
(
$::mysqld_variables
{'
version-ssl-library
'}
=~
/WolfSSL/
)
||
(
$::mysqld_variables
{'
version-ssl-library
'}
=~
/OpenSSL (\S+)/
and
$1
ge
"
1.0.2
");
}
$skip
{'
include/have_ssl_communication.inc
'}
=
$skip
{'
include/have_ssl_crypto_functs.inc
'}
=
'
Requires SSL
'
unless
$ssl_lib
;
$skip
{'
main/openssl_6975.test
'}
=
'
no or wrong openssl version
'
unless
$openssl_ver
ge
"
1.0.1d
"
and
$openssl_ver
lt
"
1.1.1
";
$skip
{'
main/ssl_7937.combinations
'}
=
[
'
x509v3
'
]
unless
x509v3_ok
()
;
unless
$ssl_lib
=~
/WolfSSL/
or
$openssl_ver
ge
"
1.0.2
"
;
$skip
{'
main/ssl_verify_ip.test
'}
=
'
x509v3 support required
'
unless
$::mysqld_variables
{'
version-ssl-library
'}
=~
/OpenSSL (\S+)/
and
$1
ge
"
1.0.2
";
unless
$openssl_ver
ge
"
1.0.2
";
%
skip
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment