Skip to content

Commit 6a470db

Browse files
committed
Merge 10.5 into 10.6
2 parents 0f9acce + 81e60f1 commit 6a470db

28 files changed

+383
-92
lines changed

mysql-test/include/linux.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if (`select convert(@@version_compile_os using latin1) LIKE 'Linux' = 0`)
1+
if (`select @@version_compile_os not LIKE 'Linux%'`)
22
{
33
skip Need Linux;
44
}

mysql-test/main/no-threads.test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# an additional util connection and other statistics data
33
-- source include/no_view_protocol.inc
44

5-
--source include/one_thread_per_connection.inc
65
#
76
# Test the --thread-handler=no-threads option
87
#

mysql-test/main/ssl_cipher.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ VARIABLE_VALUE like '%AES128-SHA%'
6666
1
6767
disconnect ssl_con;
6868
connection default;
69+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
70+
FOUND 2 /TLSv1.0 and TLSv1.1 are insecure/ in mysqld.1.err

mysql-test/main/ssl_cipher.test

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,9 @@ SHOW STATUS LIKE 'Ssl_cipher';
101101
SELECT VARIABLE_VALUE like '%AES128-SHA%' FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME='Ssl_cipher_list';
102102
disconnect ssl_con;
103103
connection default;
104+
105+
# MDEV-31369 Disable TLS v1.0 and 1.1 for MariaDB
106+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
107+
--let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err
108+
--let SEARCH_PATTERN= TLSv1.0 and TLSv1.1 are insecure
109+
--source include/search_pattern_in_file.inc

mysql-test/main/tls_version.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ Variable_name Value
1212
Ssl_version TLSv1.2
1313
@@tls_version
1414
TLSv1.1,TLSv1.2
15+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
16+
FOUND 1 /TLSv1.0 and TLSv1.1 are insecure/ in mysqld.1.err

mysql-test/main/tls_version.test

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@
2222
# finally list available protocols
2323
--exec $MYSQL --host=localhost --ssl -e "select @@tls_version;"
2424

25+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
26+
--let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err
27+
--let SEARCH_PATTERN= TLSv1.0 and TLSv1.1 are insecure
28+
--source include/search_pattern_in_file.inc
29+

mysql-test/main/tls_version1.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ Variable_name Value
44
Ssl_version TLSv1
55
@@tls_version
66
TLSv1.0
7+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
8+
FOUND 1 /TLSv1.0 and TLSv1.1 are insecure/ in mysqld.1.err

mysql-test/main/tls_version1.test

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@
1010
--exec $MYSQL --host=localhost --ssl --tls_version=TLSv1.0 -e "show status like 'ssl_version';"
1111
--exec $MYSQL --host=localhost --ssl -e "select @@tls_version;"
1212

13+
call mtr.add_suppression("TLSv1.0 and TLSv1.1 are insecure");
14+
--let SEARCH_FILE=$MYSQLTEST_VARDIR/log/mysqld.1.err
15+
--let SEARCH_PATTERN= TLSv1.0 and TLSv1.1 are insecure
16+
--source include/search_pattern_in_file.inc
17+

mysql-test/suite/galera/disabled.def

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
galera_as_slave_ctas : MDEV-28378 timeout
1414
galera_pc_recovery : MDEV-25199 cluster fails to start up
1515
galera_sst_encrypted : MDEV-29876 Galera test failure on galera_sst_encrypted
16-
galera_binlog_checksum : MDEV-29861 Galera test case hangs
17-
galera_var_notify_ssl_ipv6 : MDEV-29861 Galera test case hangs
18-
galera_var_notify_cmd: MDEV-29861 Galera test case hangs
1916
galera_var_node_address : MDEV-20485 Galera test failure
2017
MDEV-26575 : MDEV-29878 Galera test failure on MDEV-26575
2118
galera_bf_abort_shutdown : MDEV-29918 Assertion failure on galera_bf_abort_shutdown

0 commit comments

Comments
 (0)